Looks like I ran into the next trap.
on the 16F876 I have been using the DATA Statement to write data to the internal EEPROM and it worked as expected.
i.e.
DATA @$10,$A1,$A2,$A3,$A4,$A5,$A6,$A7
results in the following EEPROM content at location $10
$0010 - A1 A2 A3 A4 A5 A6 A7
with the 18F252 it looks different
DATA @$10,$A1,$A2,$A3,$A4,$A5,$A6,$A7
results in the following EEPROM content at location $08
$0008 - A1 A3 A5 A7
Does a READ have the same strange behavior on the 18F ?
Could anyone give me some hints how to use DATA and READ with the 18F252 (PBP 2.43 / MPASM 3.50)
Thanks in advance !
Bookmarks