Hello group,

I'm trying a new PIC (PIC16F15325) and I can't define anything on the on-chip EEPROM:

Code:
'----[ Color Tables ]-------------------------


GOTO OverColorTables


BaseColorsTable data $FF, $00, $00, $B9, $46, $00  ; Red, Orange
                data $7F, $7F, $00, $00, $FF, $00  ; Yellow, Green
                data $00, $8C, $73, $00, $00, $FF  ; Cyan, Blue
                data $4B, $00, $B4, $B4, $00, $4B  ; Pink, Violet
                data $FF, $FF, $FF                 ; White


OverColorTables:
The READ command doesn't generate any error/warning.

Self-programming is also supported by the chip :

13.1.1.2 Self-programming
The program memory cell and control logic will support
write and row erase operations across the entire VDD
range. Bulk Erase is not available when selfprogramming.
so I've tried READCODE but I get "bad expression" compile error.

I'm using PBP3.1 Gold + latest version of MPASM.

Any hint anyone? Should I post this to the ME Labs Forums too?