1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-14 18:24:10 +00:00

Added Commander X16 Platform Target and example program. #581

This commit is contained in:
jespergravgaard 2020-12-14 01:52:55 +01:00
parent 2f695a3724
commit 0af602beb5
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,10 @@
// Commodore 64 PRG executable file
.file [name="%O", type="prg", segments="Program"]
.segmentdef Program [segments="Basic, Code, Data"]
.segmentdef Basic [start=$0801]
.segmentdef Code [start=%P]
.segmentdef Data [startAfter="Code"]
.segment Basic
:BasicUpstart(%E)
.segment Code

View File

@ -0,0 +1,11 @@
{
"description": "Commander X16 PRG executable file.",
"extension": "prg",
"link": "cx16.ld",
"start_address": "0x080d",
"cpu": "WDC65C02",
"emulator": "x16emu -debug -run -prg",
"defines": {
"__CX16__": 1
}
}