tinyc64 custom config: move SCRATCH_PTR to $04+$05, from $9b+$9c because $9b is used by JiffyDOS. see #217

This commit is contained in:
Irmen de Jong
2026-02-28 23:19:57 +01:00
parent 23b9a2792d
commit 10d80d0274
@@ -19,13 +19,13 @@ zp_scratch_b1 = $02
zp_scratch_reg = $03
zp_scratch_w1 = $fb
zp_scratch_w2 = $fd
zp_scratch_ptr = $9b
zp_scratch_ptr = $04
# free zeropage locations for the various zp usage methods
# zero or more zeropage address ranges (inclusive).
zp_fullsafe = $02-$90,$92-$9f,$a3-$bf,$c1,$c2,$c3,$c4,$c6-$ca,$cf-$f4,$f7-$ff
zp_kernalsafe = $02-$25,$39-$48,$4b-$4f,$51,$52,$53,$57,$58,$59,$5a,$5b,$5c,$5d,$5e,$5f,$60-$8f,$ff
zp_basicsafe = $02-$06,$0a,$0e,$92,$96,$9b,$9c,$9e,$9f,$a6,$b0,$b1,$be,$bf,$f9
zp_fullsafe = $02-$90,$92-$9a,$9c-$9f,$a3-$bf,$c1,$c2,$c3,$c4,$c6-$ca,$cf-$f4,$f7-$ff
zp_kernalsafe = $02-$25,$39-$48,$4b-$4f,$51,$52,$53,$57,$58,$59,$5a,$5b,$5c,$5d,$5e,$5f,$60-$8f,$92,$96,$9c,$9e,$9f,$a6,$b0,$b1,$be,$bf,$f9,$ff
zp_basicsafe = $02-$06,$0a,$0e,$92,$96,$9c,$9e,$9f,$a6,$b0,$b1,$be,$bf,$f9
# the start of the 32 bytes used by the R0-R15 virtual registers. Can be in Zeropage or elsewhere.
virtual_registers = $cfe0