From a4990eacbc4ac57404597bf6d9ff5e301ab006f0 Mon Sep 17 00:00:00 2001 From: Matthias Endler Date: Fri, 29 Jan 2021 00:14:32 +0100 Subject: [PATCH] bump memory to 128K --- no-std-example/memory.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/no-std-example/memory.x b/no-std-example/memory.x index b271f22..93cc3e8 100644 --- a/no-std-example/memory.x +++ b/no-std-example/memory.x @@ -4,7 +4,7 @@ MEMORY /* TODO Adjust these memory regions to match your device memory layout */ /* These values correspond to the LM3S6965, one of the few devices QEMU can emulate */ FLASH : ORIGIN = 0x00000000, LENGTH = 256K - RAM : ORIGIN = 0x20000000, LENGTH = 64K + RAM : ORIGIN = 0x20000000, LENGTH = 128K } /* This is where the call stack will be allocated. */