aboutsummaryrefslogtreecommitdiff
path: root/PL0_test.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 /PL0_test.ld
parent885a097da42317f48cead2d91c0e0240066943a8 (diff)
downloadrpi-MMU-example-615e3302c9dd358bb64cd56d1f3814ad8d5df84d.tar.gz
rpi-MMU-example-615e3302c9dd358bb64cd56d1f3814ad8d5df84d.zip
rearranged files, updated makefile
Diffstat (limited to 'PL0_test.ld')
-rw-r--r--PL0_test.ld19
1 files changed, 0 insertions, 19 deletions
diff --git a/PL0_test.ld b/PL0_test.ld
deleted file mode 100644
index b1d06f4..0000000
--- a/PL0_test.ld
+++ /dev/null
@@ -1,19 +0,0 @@
-/* linker script for creating the example userspace program PL0_test
- */
-
-/* no ENTRY() statement - this executable is run by jumping to it */
-
-SECTIONS
-{
- /* my thought up address userspace programs should run from */
- . = 0xaaa00000;
-
- __start = .;
- .another_weird_section_name_that_doesnt_matter :
- {
- /* have entry point at the beginning */
- KEEP(PL0_test.o)
- *(*)
- }
- __end = .;
-}