hi i would like to get an information about storing code size along with code. in lpc3250 (arm 9) there is a macro SIZE_EXT_INFO to store code size. same way, is it possible to store code size in lpc17xx (cortex m3) ? thanks.
Hi,
Load$$LR$$load_region_name$$Length Length of the load region.
www.keil.com/.../armlink_pge1362065953823.htm
Done things like this here in startup.s vectors to compute code+static initializers
... IMPORT ||Image$$ER_IROM1$$RO$$Length|| IMPORT ||Image$$RW_IRAM1$$RW$$Length|| ... DCD ||Image$$ER_IROM1$$RO$$Length||+\ ||Image$$RW_IRAM1$$RW$$Length|| ...