aboutsummaryrefslogtreecommitdiff
path: root/PL0_test.ld
diff options
context:
space:
mode:
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 = .;
-}