mirror of
https://codeberg.org/hkzlab/TK2048.git
synced 2025-12-26 08:02:16 +11:00
20 lines
No EOL
1.3 KiB
Scheme
20 lines
No EOL
1.3 KiB
Scheme
(define memories
|
|
'((memory zeroPage (address (#x72 . #xdf)) (type ram) ;;; Should be starting at 0x56, ending at 0xff, but experiments in the monitor have shown doc is not to be trusted
|
|
(section registers zpage zzpage))
|
|
(memory firstPage (address (#x100 . #x1ff)) (section stack))
|
|
(memory reserved (address (#x200 . #x7ff)) (type ram))
|
|
(memory program (address (#x801 . #x1fff)) (type ram)
|
|
(section (programStart #x801) (startup #x80e) code))
|
|
(memory displayPage1 (address (#x2000 . #x3fff)) (type ram))
|
|
;;; (memory datamem (address (#x4000 . #x91ff)) (type ram) (section cstack zdata heap)) ;;; usermem goes from 0x4000 to 0x9FFFF (included), we are splitting it
|
|
;;; (memory upperData (address (#x9200 . #x9fff)) (section switch idata cdata data data_init_table))
|
|
(memory datamem (address (#x4000 . #x91ff)) (type ram) (section cstack zdata data heap)) ;;; usermem goes from 0x4000 to 0x9FFFF (included), we are splitting it
|
|
(memory upperData (address (#x9200 . #x9fff)) (section switch idata cdata data_init_table))
|
|
(memory displayPage2 (address (#xa000 . #xbfff)) (type ram))
|
|
(memory io (address (#xc000 . #xc0ff)) (type ram))
|
|
(memory rombank (address (#xc100 . #xffff)) (type rom))
|
|
|
|
(block cstack (size #x800))
|
|
(block stack (size #x100))
|
|
(block heap (size #x400))
|
|
)) |