1.In NEC EMMA2LL demo board, the flash address is 16bit. A customer tell us that the byte order will swap when you use PROM programmer to program the flash
e.g. use PROM programmer to write the 0xBD27F0FF to 0x1fc10000
-> we will read 0x27BDF0FF at 0x1fc10000 use jtag65.exe
So, we must swap the byte before use the PROM programmer
2.The attached files can help you to get the binary file (sLoader + application software)
Procedure:
a) program the sloader into the flash use jtag65.exe
b) program the application software into the flash use SUpdate.exe
c) get the list file use jtag65.exe
- run jtag65.exe
- type "list temp"
- type "d 1fc00000 1fcfffff"
- type "nolist"
- then, you can get temp.lst file
d) convert the temp.lst file to output.bin file
- Run the list2bin.exe in DOS prompt
- type "list2bin temp.lst output.bin"
- then, you can get output.bin file (sloader + application software)
(The file output.bin is swapped, you can use it in PROM programmer directly)
3.Attached file:
a) temp.zip --- temp.lst
b) output.zip --- output.bin
c) list2bin.zip --- list2bin.exe
d) list2bin.ccp --- list2bin.exe source code