Hello. Could you please tell me how can i write two 512 kb file to an 27c1001 eprom? First i wtote the first 512kb file without change anything. Then I changed the Device offset to 10000 to write the second 512 file but didn't work. does anyone know?
Your steps are correct. The data should have a successful write and follow a verify fail at address 000000. That because the verify process will start from 000000 not the 100000.
Another way is to combine two 512 files into one file first. Then you can load the combined file into buffer without set the offset.
You can simply use DOS prompt copy command to combine two files: >copy file1.bin+file2.bin file3.bin /b