Global addresses 13ff00-13ff00 are available in nonbanked memory at 0x0F00.
There are no problems accessing both. To access global address you need far memory pointer.
But is it convenient or something to access EEE using pointer and not allocating some variables there? I think it is better to access directly named variables. I would go to Build options, add new NO_INIT segment at 0xF00. Then customize placement to place EEE to that segment. Then you could allocate your variables directly to EEE:
#pragma DATA_SEG EEE
int myeeevar1;
int myeeevar2;
...
#pragma DATA_SEG DEFAULT