From b69fd19910e6c34eb25bd22ef56a59655ceb4e61 Mon Sep 17 00:00:00 2001 From: Hongyu Liu Date: Fri, 4 Jul 2025 18:55:14 +0200 Subject: [PATCH] updates the flash/ram ORIGIN so that 64bit works --- env/moonlight/link.lds | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/env/moonlight/link.lds b/env/moonlight/link.lds index 2009299..d3f8b11 100644 --- a/env/moonlight/link.lds +++ b/env/moonlight/link.lds @@ -5,8 +5,8 @@ ENTRY( _start ) MEMORY { rom (rxai!w) : ORIGIN = 0xFFFFE000, LENGTH = 2k - flash (rxai!w) : ORIGIN = 0xE0000000, LENGTH = 16M - ram (wxa!ri) : ORIGIN = 0xC0000000, LENGTH = 128K + flash (rxai!w) : ORIGIN = 0x30000000, LENGTH = 16M + ram (wxa!ri) : ORIGIN = 0x10000000, LENGTH = 128K dram (wxa!ri) : ORIGIN = 0x00000000, LENGTH = 2048M }