diff options
Diffstat (limited to 'util/romcc/tests/ldscript.ld')
-rw-r--r-- | util/romcc/tests/ldscript.ld | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/util/romcc/tests/ldscript.ld b/util/romcc/tests/ldscript.ld deleted file mode 100644 index fed99ea6fd..0000000000 --- a/util/romcc/tests/ldscript.ld +++ /dev/null @@ -1,21 +0,0 @@ - -ENTRY(_start) - -SECTIONS -{ - . = 0x20000; - __cpu_reset = 0xdeadbeef; - .text . : { - . = ALIGN(16); - _start = . ; - *(.rom.text); - *(.text) - . = ALIGN(16); - } - .data . : { - . = ALIGN(16); - *(.rom.data); - *(.data) - . = ALIGN(16); - } -}
\ No newline at end of file |