1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-30 21:29:36 +00:00

More pointer space for C64/C128

This commit is contained in:
Karol Stasiak 2018-02-27 11:58:18 +01:00
parent ee18fecedf
commit 51a4fe5859
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ modules=c128_hardware,loader_1c01,c128_kernal,default_panic
[allocation]
main_org=$1C0D
; TODO
zp_pointers=$C1,$C3,$FB,$FD,$39,$3B,$3D,$43,$4B
zp_pointers=$C1,$C3,$FB,$FD,$39,$3B,$3D,$43,$45,$47,$4B
himem_style=per_bank
himem_start=after_code
; TODO

View File

@ -13,8 +13,8 @@ emit_illegals=true
[allocation]
; where the main function should be allocated, also the start of bank 0
main_org=$80D
; list of free zp pointer locations (these assume that BASIC will keep working)
zp_pointers=$C1,$C3,$FB,$FD,$39,$3B,$3D,$43,$4B
; list of free zp pointer locations (these assume that some BASIC routines will keep working)
zp_pointers=$C1,$C3,$FB,$FD,$39,$3B,$3D,$43,$45,$47,$4B
; where to allocate non-zp variables
himem_style=per_bank
himem_start=after_code