summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-m68hc11/far-hc12.ld
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-m68hc11/far-hc12.ld')
-rw-r--r--ld/testsuite/ld-m68hc11/far-hc12.ld18
1 files changed, 18 insertions, 0 deletions
diff --git a/ld/testsuite/ld-m68hc11/far-hc12.ld b/ld/testsuite/ld-m68hc11/far-hc12.ld
new file mode 100644
index 0000000..78dffe6
--- /dev/null
+++ b/ld/testsuite/ld-m68hc11/far-hc12.ld
@@ -0,0 +1,18 @@
+ENTRY(_start)
+SECTIONS {
+ .text 0xc000 : {
+ *(.text)
+ }
+ .bank1 0x10000 : {
+ *(.bank1)
+ }
+ .bank2 0x14000 : {
+ *(.bank2)
+ }
+ .bank3 0x18000 : {
+ *(.bank3)
+ }
+ .bss 0x2000 : {
+ *(.bss)
+ }
+}