aboutsummaryrefslogtreecommitdiff
path: root/src/apps/linker.ld
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2015-03-10 20:12:10 +0100
committerAlex Auvolat <alex@adnab.me>2015-03-10 20:12:10 +0100
commit6d9cd139c42a48f5ddf8f8e284f56873de73fd31 (patch)
tree7b4ca008eb6375c0d5ba9eb1456674ee996fb5d6 /src/apps/linker.ld
parent4ab8b6206b1ba36cbf4db4a416e04304bbd7ebc0 (diff)
downloadkogata-6d9cd139c42a48f5ddf8f8e284f56873de73fd31.tar.gz
kogata-6d9cd139c42a48f5ddf8f8e284f56873de73fd31.zip
Things are happenning ; lots of bugs.
Diffstat (limited to 'src/apps/linker.ld')
-rw-r--r--src/apps/linker.ld33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/apps/linker.ld b/src/apps/linker.ld
deleted file mode 100644
index 50bebbe..0000000
--- a/src/apps/linker.ld
+++ /dev/null
@@ -1,33 +0,0 @@
-ENTRY (__libkogata_start)
-
-SECTIONS{
- . = 0x100000;
-
- .text : {
- *(.text)
- }
-
- .rodata ALIGN (0x1000) :{
- *(.rodata)
- }
-
- .data ALIGN (0x1000) : {
- start_ctors = .;
- *(.ctor*)
- end_ctors = .;
- start_dtors = .;
- *(.dtor*)
- end_dtors = .;
- *(.data)
- *(.locks)
- }
-
- .bss : {
- sbss = .;
- *(COMMON)
- *(.bss)
- ebss = .;
- }
-
- end = .; _end = .; __end = .;
-}