summaryrefslogtreecommitdiffstats
path: root/firmware/test/i2c/app.lds
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/test/i2c/app.lds')
-rw-r--r--firmware/test/i2c/app.lds36
1 files changed, 0 insertions, 36 deletions
diff --git a/firmware/test/i2c/app.lds b/firmware/test/i2c/app.lds
deleted file mode 100644
index b8a341a8ae..0000000000
--- a/firmware/test/i2c/app.lds
+++ /dev/null
@@ -1,36 +0,0 @@
-ENTRY(start)
-OUTPUT_FORMAT(elf32-sh)
-SECTIONS
-{
- .text 0x09010000 :
- {
- KEEP(*(.vectors))
- . = ALIGN(0x200);
- *(.init.text)
- }
-
- .text :
- {
- *(.text)
- }
-
- .data :
- {
- *(.rodata)
- *(.data)
- }
-
- .rodata :
- {
- *(.rodata)
- }
-
- .bss :
- {
- _edata = .;
- *(.bss)
- *(COMMON)
- _end = .;
- _stack = . + 0x80000;
- }
-}