When I use this statement in my program

  ProgramRead(1000, avar)
 
the following lines are included in the generated asm:

EEADDRESS     equ  EEADR
EEADDRESS_H   equ  EEADRH
EEDATAWORD    equ  EEDATA
EEDATAWORD_H  equ  EEDATH

and I get the following error at assembly time:

Error[113]   F:\PIC\MYPROG.ASM 54 : Symbol not previously defined (EEDATH)

I'm using a PIC18F2620 which I think doesn't have the EEDATH register,
so the error report is right.
Could it be an 'extra definition' case bug ?

Thanks, Andrew.