This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

6455 hex6x can't work



hello I want to generate flash burn file from "*.out", first I use the hex6x utility to generate ascII-HEX file, I found that it can work when the "*.out" file size is small (for example ,it is 802KB), but it can't work when the file is large(for example it is 1.3MB),here is the command I run in cmd:

hex6x self.cmd,

and the content of the self.cmd is :

flash.out /* input COFF file */
-a /* create ASCII image */
-image /* Create a memory image (no */
-boot
-order L
-map memory.map /* create a hex map file */
-memwidth 32 /* Width of ROM/Flash memory -map appl2.map create a hex map file */
-bootorg 0xb0000400 /* address of the boot/copy-table */
-bootsection .bootload 0xb0000000 /* section containing our asm boot routine */

ROMS
{
FLASH: org = 0xb0000000, len = 0x40000, romwidth = 32, files = {image.hex}
}

when I run this I got this below output in the cmd :

how can I solve this problem ,waitting for your reply!