mirror of
https://github.com/irmen/prog8.git
synced 2025-08-07 21:25:18 +00:00
42 lines
1.4 KiB
Properties
42 lines
1.4 KiB
Properties
# configuration file for a C64 like Prog8 compilation target
|
|
# launch the neo6502 emulator like this: "neo hello.bin@800 cold"
|
|
|
|
cpu = 65C02
|
|
encoding = iso
|
|
# output_type = PRG
|
|
load_address = $0800
|
|
memtop = $fc00
|
|
bss_highram_start = 0
|
|
bss_highram_end = 0
|
|
bss_goldenram_start = 0
|
|
bss_goldenram_end = 0
|
|
|
|
# io_regions specifies memory-mapped I/O registers that should be treated differentely.
|
|
# it can be zero or more memory address ranges (inclusive) separated by comma
|
|
io_regions = $ff00-$ff0f
|
|
|
|
# zeropage scratch variables. zp_scratch_reg must always be zp_scratch_b1+1 !
|
|
zp_scratch_b1 = $fa
|
|
zp_scratch_reg = $fb
|
|
zp_scratch_w1 = $fc
|
|
zp_scratch_w2 = $fe
|
|
|
|
# free zeropage locations for the various zp usage methods
|
|
# zero or more zeropage address ranges (inclusive).
|
|
zp_fullsafe = $22-$ff
|
|
zp_kernalsafe = $22-$ff
|
|
zp_basicsafe = $22-$ff
|
|
|
|
# the start of the 32 bytes used by the R0-R15 virtual registers. Can be in Zeropage or elsewhere.
|
|
virtual_registers = $02
|
|
|
|
# Where can we find the standard library (syslib.p8). You can still add more paths manually using -srcdirs
|
|
library = ./libraries/neo6502
|
|
|
|
# if a non-empty custom launcher code string is supplied, the compiler won't output ANY launcher / init code by itself,
|
|
# and instead outputs whatever is specified here. (You can use \n here for newline and \ for line continuantions)
|
|
custom_launcher_code =
|
|
|
|
# additional options passed to the assembler program
|
|
assembler_options =
|