Fixed memory map

This commit is contained in:
Kyle Cardoza 2024-03-28 15:34:52 -04:00
parent 5ad7268c5f
commit 12cecca30e
1 changed files with 7 additions and 7 deletions

View File

@ -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))