From f2dc4682eafb29ca57ea8f82e89366cfb274dd03 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Fri, 23 Apr 2021 13:47:34 +0100 Subject: [PATCH] add memmap --- src/openpower/simulator/memmap | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/openpower/simulator/memmap diff --git a/src/openpower/simulator/memmap b/src/openpower/simulator/memmap new file mode 100644 index 00000000..8cc1a16e --- /dev/null +++ b/src/openpower/simulator/memmap @@ -0,0 +1,11 @@ + +MEMORY +{ + ram : ORIGIN = 0x20000000, LENGTH = 128M +} + +SECTIONS +{ + .text : { *(.text*) } > ram + .bss : { *(.text*) } > ram +} -- 2.30.2