aboutsummaryrefslogtreecommitdiff
path: root/loader_stage1_linker.ld
diff options
context:
space:
mode:
authorvetch <vetch97@gmail.com>2020-01-04 19:37:32 +0100
committervetch <vetch97@gmail.com>2020-01-04 19:37:32 +0100
commit615e3302c9dd358bb64cd56d1f3814ad8d5df84d (patch)
tree07b0469807eb3bff7ff7d3f3576858642bc66675 /loader_stage1_linker.ld
parent885a097da42317f48cead2d91c0e0240066943a8 (diff)
downloadrpi-MMU-example-615e3302c9dd358bb64cd56d1f3814ad8d5df84d.tar.gz
rpi-MMU-example-615e3302c9dd358bb64cd56d1f3814ad8d5df84d.zip
rearranged files, updated makefile
Diffstat (limited to 'loader_stage1_linker.ld')
-rw-r--r--loader_stage1_linker.ld16
1 files changed, 0 insertions, 16 deletions
diff --git a/loader_stage1_linker.ld b/loader_stage1_linker.ld
deleted file mode 100644
index 711fcbf..0000000
--- a/loader_stage1_linker.ld
+++ /dev/null
@@ -1,16 +0,0 @@
-ENTRY(_boot)
-
-SECTIONS
-{
- /* see linker.ld for details */
- . = 0x2000000;
-
- __start = .;
- loader_stage1 :
- {
- KEEP(loader_stage1.o)
- }
- __end = .;
-
- _stack_top = 0x8000;
-}