No support for EEPROM programming

Issue #3 new
Former user created an issue

Currently the programmer only programs the ROM and FUSE portions of 18F.

EEPROM starts at 0xF00000

To accommodate this, you can change the self.memory type to a dictionary (as opposed to a list) in Hex.py (to avoid memory issues): self.memory={}

Also add a new loop to pic_programmer.py:

address=0xF00000 while address<0xF00100: ... replicate write to buffer code here...

Comments (2)

  1. Log in to comment