From 12cecca30eab036b011d3e15c6b2c492eadb1dbf Mon Sep 17 00:00:00 2001 From: Kyle Cardoza Date: Thu, 28 Mar 2024 15:34:52 -0400 Subject: [PATCH] Fixed memory map --- config/memory.scm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/config/memory.scm b/config/memory.scm index 1cd5784..0a2e563 100644 --- a/config/memory.scm +++ b/config/memory.scm @@ -25,25 +25,25 @@ ) (memory MidRAM - (address (#x00E000 . #x00FFFF)) + (address (#x00F000 . #x00FFFF)) (section code) (section cnear) (section reset) (type ram) ) - (memory IOSpace - (address (#x00DF00 . #x00DFFF)) - (section (VERAIOPort #x00DF00)) - ) - (memory LowRAM - (address (#x001000 . #x00DEFF)) + (address (#x00E000 . #x00EFFF)) (section znear) (section near) (type ram) ) + (memory IOSpace + (address (#x00DF00 . #x00DFFF)) + (section (VERAIOPort #x00DF00)) + ) + (memory stack (address (#x000200 . #x000FFF)) (section (stack #x00200))