From 615e3302c9dd358bb64cd56d1f3814ad8d5df84d Mon Sep 17 00:00:00 2001 From: vetch Date: Sat, 4 Jan 2020 19:37:32 +0100 Subject: rearranged files, updated makefile --- PL0_test.ld | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 PL0_test.ld (limited to 'PL0_test.ld') 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 = .; -} -- cgit v1.2.3