summaryrefslogtreecommitdiff
path: root/src/grapes/link.ld
diff options
context:
space:
mode:
Diffstat (limited to 'src/grapes/link.ld')
-rw-r--r--src/grapes/link.ld26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/grapes/link.ld b/src/grapes/link.ld
deleted file mode 100644
index 7527b80..0000000
--- a/src/grapes/link.ld
+++ /dev/null
@@ -1,26 +0,0 @@
-ENTRY (start)
-
-SECTIONS{
- . = 0x10000000;
-
- .text : {
- *(.text)
- }
-
- .rodata ALIGN (0x1000) :{
- *(.rodata)
- }
-
- .data ALIGN (0x1000) : {
- *(.data)
- }
-
- .bss : {
- sbss = .;
- *(COMMON)
- *(.bss)
- ebss = .;
- }
-
- end = .; _end = .; __end = .;
-}