We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c84d5b2 commit 7dd036aCopy full SHA for 7dd036a
linker-script
@@ -12,17 +12,16 @@ MEMORY {
12
}
13
14
SECTIONS {
15
- /* The interrupt vector routines *must* start at address 0x0000 */
16
- .ivr : {
+ .text : {
17
/*
+ * The interrupt vector routines *must* start at address 0x0000
18
+ *
19
* Preserve every symbol in the Interrupt Vector Routines table to
20
* prevent them from being garbage collected.
21
*/
22
KEEP(* (.ivr));
- } >text
23
24
- /* The rest of our code */
25
- .text : {
+ /* The rest of our code */
26
* (.text* .progmem.data*);
27
} >text
28
0 commit comments