I'm using MPLAB to program a PIC24F16KA101, and the assembler is ASM30.
I can program data into the program space by setting a location with a .org directive and .pword directives, like this:-
Is there some equivalent way of putting data into the eeprom?
I can program data into the program space by setting a location with a .org directive and .pword directives, like this:-
Code:
.org 0xA5FC - 0x204
.pword 0xFF6577,0xFF7562,0xFF2e6b,0xFF756d
Is there some equivalent way of putting data into the eeprom?