1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-08 17:54:40 +00:00

Added target files.

This commit is contained in:
jespergravgaard 2020-05-11 11:04:32 +02:00
parent 239cfdb48e
commit 86358c66be
11 changed files with 54 additions and 1 deletions

2
.gitignore vendored
View File

@ -5,5 +5,5 @@
*/*.sym
*/bin/
*/workspace.xml
target/
./target/
**/.DS_Store

View File

@ -0,0 +1 @@
.pc = %P "Program"

View File

@ -0,0 +1,8 @@
{
"link": "asm6502.ld",
"cpu": "MOS6502X",
"emulator": "x64sc"
}

View File

@ -0,0 +1,9 @@
.file [name="%O.prg", type="prg", segments="Program"]
.segmentdef Program [segments="Basic, Code, Data"]
.segmentdef Basic [start=$0801]
.segmentdef Code [start=$080d]
.segmentdef Data [startAfter="Code"]
.segment Basic
:BasicUpstart(%E)
.segment Code

View File

@ -0,0 +1,5 @@
{
"link": "c64.ld",
"cpu": "MOS6502X",
"emulator": "x64sc"
}

View File

@ -0,0 +1,3 @@
.pc = $801 "Basic"
:BasicUpstart(%E)
.pc = %P "Program"

View File

@ -0,0 +1,5 @@
{
"link": "c64basic.ld",
"cpu": "MOS6502X",
"emulator": "x64sc"
}

View File

@ -0,0 +1,9 @@
.file [name="%O.prg", type="prg", segments="Program"]
.segmentdef Program [segments="Basic, Code, Data"]
.segmentdef Basic [start=$1001]
.segmentdef Code [start=$100d]
.segmentdef Data [startAfter="Code"]
.segment Basic
:BasicUpstart(%E)
.segment Code

View File

@ -0,0 +1,5 @@
{
"link": "plus4.ld",
"cpu": "MOS6502X",
"emulator": "xplus4"
}

View File

@ -0,0 +1,3 @@
.pc = $1001 "Basic"
:BasicUpstart(%E)
.pc = $100d "Program"

View File

@ -0,0 +1,5 @@
{
"link": "plus4basic.ld",
"cpu": "MOS6502X",
"emulator": "xplus4"
}