\ assembler will now add to target
assembler>target
HOST
DEFINITIONS
This has to be first. On a Coldfire restart execution starts at 0. The startup routine is position independent code that tests the SRAM, and then copies the kernal from the prom to the SRAM. This file sets the constants that need to be set to start the xcompile.
\ describe the boot prom, this address is the start of SRAM
$10000000 EQU _prom_kernel_start
\ #kernel_size in set in XCOM
_prom_kernel_start _#kernel_size + EQU _prom_kernel_end ( End of prom area)
\ set up the xcompiler to compile into the boot prom
_prom_kernel_start WINDOW
setup_dictionary
_prom_kernel_start 400 + org ( Room for interrupt vectors)