Hi there
How can I write the following code in C. It is taken from AN4258SW\Bootloader_S12\Sources\StartS12.s.
...
AppResetVect: equ $effe ; here is stored reset vector of user application
...
ldd AppResetVect
cpd #$ffff
beq GoBoot ; if the application reset vector is not available
; then start the bootloader
ldx AppResetVect
jmp 0,x ; jump to the application
Is there an assembler manual for S12?
Many thanks.
Paul.