1 /* This is for the variant without boot ROM,
2 where the flash ROM is mirrored to address zero */
4 OUTPUT_FORMAT(elf32-sh)
8 IRAM : ORIGIN = 0x0FFFF000, LENGTH = 0x1000
9 FLASH : ORIGIN = 0x00000000, LENGTH = 0x40000
27 .text : AT ( _begin_iramcopy )
36 .data : AT ( _end_text )
44 .bss : AT ( _end_data )
60 /* size of the program (without vectors) */
61 _total_size = SIZEOF(.startup) + SIZEOF(.text) + SIZEOF(.data);