# .text sections
OBJECT (F_EntryPoint, Cpu.c) # The function _EntryPoint have to be placed at the beginning of the code
# section for proper functionality of the serial bootloader.
* (.text)
* (rtlib.text)
* (startup.text)
* (fp_engine.text)
* (user.text)
* (.const.data.pmem) # line is added by users
* (.const.data.char.pmem) # line is added by users
F_Pcode_end_addr = .;
# save address where for the data start in pROM
. = ALIGN(2);
__pROM_data_start = .;