From 0b0284a977f1988a91a3bde5ceefef1a206afd8a Mon Sep 17 00:00:00 2001 From: Martin Ombura Jr Date: Sat, 5 Dec 2020 17:26:56 +0200 Subject: [PATCH] Update memory.x Changes the default `FLASH : ORIGIN` to start at `0x08000000` for the LM3S6965 --- memory.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memory.x b/memory.x index b271f22..124391e 100644 --- a/memory.x +++ b/memory.x @@ -3,7 +3,7 @@ MEMORY /* NOTE 1 K = 1 KiBi = 1024 bytes */ /* 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 + FLASH : ORIGIN = 0x08000000, LENGTH = 256K RAM : ORIGIN = 0x20000000, LENGTH = 64K }