]> git.lizzy.rs Git - loadnothing.git/blob - linker.ld
Break stuff
[loadnothing.git] / linker.ld
1 MEMORY {
2         RAM : org = 0x7e00, l = 12K
3 }
4
5 SECTIONS {
6         . = 0x7e00;
7         .text :
8         {
9                 *(.text)
10         } > RAM
11 }