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 (memory MidRAM
(address (#x00E000 . #x00FFFF)) (address (#x00F000 . #x00FFFF))
(section code) (section code)
(section cnear) (section cnear)
(section reset) (section reset)
(type ram) (type ram)
) )
(memory IOSpace
(address (#x00DF00 . #x00DFFF))
(section (VERAIOPort #x00DF00))
)
(memory LowRAM (memory LowRAM
(address (#x001000 . #x00DEFF)) (address (#x00E000 . #x00EFFF))
(section znear) (section znear)
(section near) (section near)
(type ram) (type ram)
) )
(memory IOSpace
(address (#x00DF00 . #x00DFFF))
(section (VERAIOPort #x00DF00))
)
(memory stack (memory stack
(address (#x000200 . #x000FFF)) (address (#x000200 . #x000FFF))
(section (stack #x00200)) (section (stack #x00200))