From 703fbf67b417e3ac75287d9554f875b5587cc391 Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Mon, 15 Sep 2025 21:02:23 +0200 Subject: [PATCH] fixes ROM location --- env/riscv_vp/memory_map.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env/riscv_vp/memory_map.ld b/env/riscv_vp/memory_map.ld index 5962423..378d716 100644 --- a/env/riscv_vp/memory_map.ld +++ b/env/riscv_vp/memory_map.ld @@ -1,7 +1,7 @@ MEMORY { ram (wxa!ri) : ORIGIN = 0x00000000, LENGTH = 128K - rom (rxai!w) : ORIGIN = 0x1000E000, LENGTH = 8k + rom (rxai!w) : ORIGIN = 0x10080000, LENGTH = 8k flash (rxai!w) : ORIGIN = 0x20000000, LENGTH = 16M dram (wxa!ri) : ORIGIN = 0x40000000, LENGTH = 2048M }