1
0
mirror of https://github.com/KarolS/millfork.git synced 2026-04-21 09:16:34 +00:00

Preliminary Apple II support

This commit is contained in:
Karol Stasiak
2018-01-23 13:37:03 +01:00
parent f870a0c381
commit c7f45ebddc
7 changed files with 57 additions and 3 deletions
+21
View File
@@ -0,0 +1,21 @@
[compilation]
arch=strict
modules=apple2_kernel,default_panic
[allocation]
main_org=$0C00
; TODO
zp_pointers=6,8,$EB,$ED,$FA,$FC
;TODO
himem_style=per_bank
himem_start=after_code
himem_end=$95FF
[output]
;TODO
style=per_bank
format=allocated
extension=a2
+6
View File
@@ -0,0 +1,6 @@
array hires_page_1 [$2000] @$2000
array hires_page_2 [$2000] @$4000
asm void bell() @$FBE4 extern
asm void putchar(byte a) @$FDED extern