diff options
author | Oxore <oxore@protonmail.com> | 2023-05-04 00:16:02 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2023-05-04 00:16:02 +0300 |
commit | 79ff96cb2ffb140863c48803d21d10349881f907 (patch) | |
tree | b73a97e084eac2551115272272292a657172c714 /_rom.ld | |
parent | f2016e84699c4f8a83e759fecac9e5dacd490a40 (diff) |
Add Readme, move hello world into separate dir
Diffstat (limited to '_rom.ld')
-rw-r--r-- | _rom.ld | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/_rom.ld b/_rom.ld deleted file mode 100644 index 55106be..0000000 --- a/_rom.ld +++ /dev/null @@ -1,15 +0,0 @@ -SECTIONS { - . = ORIGIN(ROM); - .text : { - KEEP(*(.stack)) - KEEP(*(.vectors)) - KEEP(*(.smd_header)) - KEEP(*(.text)) - . = ALIGN(4); - *(.text*) - . = ALIGN(4); - KEEP(*(.rodata)) - *(.rodata*) - . = ALIGN(4); - } >ROM -} |