I've not had to use the EE on an 18F PIC before and struck a small snag. It seems the MPASM aligns all "de" directives on even addresses. So with this: de 0x01 de 0x02 de 0x03 de 0x04 The result is really 0x01 0x00 0x02 0x00 0x03 0x00 0x04 0x00 as it pads each de section with 0x00 to make it even. I have worked around this by doing: de 0x01 0x02 de 0x03 0x04 Is there a better way around this? David... --=20 ___________________________________________ David Duffy Audio Visual Devices P/L Unit 8, 10 Hook St, Capalaba 4157 Australia Ph: +61 7 38235717 Fax: +61 7 38234717 Our Web Site: www.audiovisualdevices.com.au ___________________________________________ --=20 http://www.piclist.com PIC/SX FAQ & list archive View/change your membership options at http://mailman.mit.edu/mailman/listinfo/piclist .