From: Luke Kenneth Casson Leighton Date: Fri, 23 Apr 2021 12:47:34 +0000 (+0100) Subject: add memmap X-Git-Tag: 0.0.1~42 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f2dc4682eafb29ca57ea8f82e89366cfb274dd03;p=openpower-isa.git add 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 +}