Work on memory map

This commit is contained in:
Kyle Cardoza 2024-03-30 07:37:58 -04:00
parent c9a74be5ea
commit 2fc46e1021
2 changed files with 3 additions and 7 deletions

View File

@ -45,9 +45,8 @@
) )
(memory stack (memory stack
(address (#x000200 . #x000FFF)) (address (#x000100 . #x007FFF))
(section (stack #x00200)) (section (stack #x00100))
(section (cstack #x00400))
) )
(memory DirectPage (memory DirectPage
@ -58,9 +57,7 @@
) )
) )
(block cstack (size #x400)) ; C stack size (block stack (size #x7F00)) ; machine stack size
(block stack (size #x200)) ; machine stack size
(block heap (size #x0001)) (block heap (size #x0001))

View File

@ -5,7 +5,6 @@
.rtmodel core, "*" .rtmodel core, "*"
.section stack .section stack
.section cstack
.section heap .section heap
.section data_init_table .section data_init_table