blob: 7a0304f4695b2981d915e194fbfa55f85db9917a [file] [log] [blame]
Sylvain Munaut21b03ba2020-09-14 10:01:45 +02001MEMORY
2{
3 ROM (rx) : ORIGIN = 0x00000000, LENGTH = 0x0400
4}
5ENTRY(_start)
6SECTIONS {
7 .text :
8 {
9 . = ALIGN(4);
10 *(.text.start)
11 *(.text)
12 *(.text*)
13 } >ROM
14}