Hello,
#pragma DATA_SEG EEPROM_DATA is recommended approach.
You can define multiple segments for each object to be placed at specific address.
There is an alternative way using @ operator - this bypasses the .prm file and alocate an absolute address section at defined address.
#include <hidef.h> /* for EnableInterrupts macro */
#include "derivative.h" /* include peripheral declarations */
#define EEPROM_TEST 0x10008
unsigned int EE_Test @EEprom_TEST;
In Map file you should see this:

hope it helps.
Stan