Lines Matching refs:code
39 /* The startup code goes first into FLASH */
43 KEEP(*(.isr_vector)) /* Startup code */
50 *(.chipinit_section) /* .text sections (code) */
51 *(.chipinit_section*) /* .text* sections (code) */
52 *(.glue_7) /* glue arm to thumb code */
53 *(.glue_7t) /* glue thumb to arm code */
60 _etext = .; /* define a global symbols at end of code */
63 /* The program code and other data goes into FLASH */
67 *(.text) /* .text sections (code) */
68 *(.text*) /* .text* sections (code) */
69 *(.glue_7) /* glue arm to thumb code */
70 *(.glue_7t) /* glue thumb to arm code */
77 _etext = .; /* define a global symbols at end of code */
120 /* Initialized data sections goes into RAM, load LMA copy after code */