Rev 3 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3 | Rev 7 | ||
|---|---|---|---|
| Line 71... | Line 71... | ||
| 71 | /* The startup code goes first into FLASH */ |
71 | /* The startup code goes first into FLASH */ |
| 72 | .isr_vector : |
72 | .isr_vector : |
| 73 | { |
73 | { |
| 74 | . = ALIGN(4); |
74 | . = ALIGN(4); |
| 75 | KEEP(*(.isr_vector)) /* Startup code */ |
75 | KEEP(*(.isr_vector)) /* Startup code */ |
| 76 | . = ALIGN(4); |
76 | . = ALIGN(1024); |
| - | 77 | } >FLASH |
|
| - | 78 | ||
| - | 79 | /* non volatile data in a data block at the beginning of flash */ |
|
| - | 80 | .nvram : |
|
| - | 81 | { |
|
| - | 82 | *(.nvram) /* .nvram sections (code/data tables) */ |
|
| - | 83 | . = ALIGN(1024); |
|
| 77 | } >FLASH |
84 | } >FLASH |
| 78 | 85 | ||
| 79 | /* The program code and other data goes into FLASH */ |
86 | /* The program code and other data goes into FLASH */ |
| 80 | .text : |
87 | .text : |
| 81 | { |
88 | { |