I am attempting to create a bootable EMIF image, with a header (read: at the start of the boot image, before the ROM bootable code). This header would, in a perfect world, jump over itself with the first 32-bit instruction to the TI ROM Bootloader. Is there a capability for doing so?
e.g.,
b 0x400 ; assuming header size is 0x400
I know that the only way I've seen it work is:
mvk 0x400, a1
b a1
But this generates two 32-bit instructions using the hex6x tool. I would like to have one.
Thank you
M.