From 0e948fe1be1debaad9b7bbd6a12272b174fe0d62 Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Sun, 15 Mar 2026 10:42:00 +0100 Subject: [PATCH] updates riscv-vp memory map to mathc implementation --- env/riscv_vp/memory_map.ld | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/env/riscv_vp/memory_map.ld b/env/riscv_vp/memory_map.ld index 378d716..05b350b 100644 --- a/env/riscv_vp/memory_map.ld +++ b/env/riscv_vp/memory_map.ld @@ -1,7 +1,8 @@ MEMORY { - ram (wxa!ri) : ORIGIN = 0x00000000, LENGTH = 128K rom (rxai!w) : ORIGIN = 0x10080000, LENGTH = 8k flash (rxai!w) : ORIGIN = 0x20000000, LENGTH = 16M - dram (wxa!ri) : ORIGIN = 0x40000000, LENGTH = 2048M + ram (wxa!ri) : ORIGIN = 0x30000000, LENGTH = 256K + trace (wxa!ri) : ORIGIN = 0x31000000, LENGTH = 1M + dram (wxa!ri) : ORIGIN = 0x40000000, LENGTH = 1024M }