Dear technical support,
I would like to ask you for advice.
I have problem with conversion of file.hex to file.rom (binary). After conversion from file.hex to file.rom is maximal lenght of program greater by 16 words (32 bytes).
The begin of file.hex
You can see from file.hex that start address of program is 0x4000. (it is 0x84000)
The End of file.hex
You can see from file.hex that end address of program is 0xECB8 + 10 words = 0xECC8 (it is 0x8ECC8)
Maximal lenght of program in file.hex is endAddress - startAddress = 0xACC8 --> 44232 words
You can see from picture below that after conversion file.rom has maximal lenght 88496 bytes, 44 248 words.
I need the maximum length of program in file.hex is same like in file.rom.
Here I list makeRom.bat (file) for creation file.rom (TestServo.rom).
hex2000.exe -memwidth=16 -romwidth=16 -a -i -o TestServo.hex TestServo.out
hex2bin.exe -a -w -e rom TestServo.hex
@echo off
pause
Best regards