aboutsummaryrefslogtreecommitdiffstats
path: root/emulator/qtools/tests/tests.ld
diff options
context:
space:
mode:
Diffstat (limited to 'emulator/qtools/tests/tests.ld')
-rw-r--r--emulator/qtools/tests/tests.ld10
1 files changed, 10 insertions, 0 deletions
diff --git a/emulator/qtools/tests/tests.ld b/emulator/qtools/tests/tests.ld
new file mode 100644
index 0000000..05fe41b
--- /dev/null
+++ b/emulator/qtools/tests/tests.ld
@@ -0,0 +1,10 @@
+SECTIONS {
+ TEXT_START = 0x00010000 ;
+ DATA_START = 0x00200000 ;
+ handlers 0x0 : { *(handlers) }
+ .text TEXT_START : { *(.text) }
+ .data DATA_START : { *(.data) }
+ .bss : { *(.bss) *(COMMON) }
+ p00300000 0x00300000 : { *(p00300000) }
+ p00400000 0x00400000 : { *(p00400000) }
+}