mirror of
https://codeberg.org/hkzlab/TK2000_floppicator.git
synced 2025-12-31 03:49:20 +11:00
Add empty floppicator project
This commit is contained in:
parent
667ffdd197
commit
be70ff936e
29 changed files with 2153 additions and 0 deletions
21
linker-files/linker.scm
Normal file
21
linker-files/linker.scm
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
(define memories
|
||||
'((memory zeroPage (address (#x56 . #xff)) (type ram)
|
||||
(section registers zpage zzpage))
|
||||
(memory firstPage (address (#x100 . #x1ff)) (section stack))
|
||||
(memory reserved (address (#x200 . #x7ff)) (type ram))
|
||||
(memory program (address (#x800 . #x15ff)) (type ram)
|
||||
(section (programStart #x800) (dii_critical_wr_code #x803) (dii_critical_rd_code #x90b) startup code switch idata cdata data_init_table))
|
||||
(memory dataMem (address (#x1600 . #x1fff)) (type ram) (section cstack zdata data heap zpsave))
|
||||
(memory displayPage1 (address (#x2000 . #x3fff)) (type ram))
|
||||
(memory upperMem (address (#x4000 . #x9bff)) (type ram))
|
||||
(memory diskBuffer (address (#x9c00 . #x9eff)) (type ram)) ;;; This memory will be used by the disk II routines as buffer
|
||||
(memory zeroPageBackup (address (#x9f00 . #x9fff)) (type ram) (section (zpsave #x9f00)))
|
||||
(memory displayPage2 (address (#xa000 . #xbfff)) (type ram))
|
||||
(memory io (address (#xc000 . #xc0ff)) (type ram))
|
||||
(memory rombank (address (#xc100 . #xffff)) (type rom))
|
||||
|
||||
(block cstack (size #x600))
|
||||
(block heap (size #x000))
|
||||
(block stack (size #x100))
|
||||
))
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue