1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-12-24 04:31:02 +00:00

Fixed off-by-1 error in XEX-format. Changed emulator.

This commit is contained in:
jespergravgaard 2020-08-06 11:50:15 +02:00
parent 4af34930ca
commit 6d1c980f19
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ ProgramEnd:
// Binary File Header
.byte $ff, $ff
// Program segment [start address, end address, data]
.word ProgramStart, ProgramEnd
.word ProgramStart, ProgramEnd-1
.segmentout [ segments="Program" ]
// RunAd - Run Address Segment [start address, end address, data]
.word $02e0, $02e1

View File

@ -2,7 +2,7 @@
"extension": "xex",
"link": "atarixl.ld",
"cpu": "MOS6502X",
"emulator": "65XEDebugger",
"emulator": "atari800 -xl",
"defines": {
"__ATARIXL__": 1
}