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:
parent
4af34930ca
commit
6d1c980f19
@ -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
|
||||
|
@ -2,7 +2,7 @@
|
||||
"extension": "xex",
|
||||
"link": "atarixl.ld",
|
||||
"cpu": "MOS6502X",
|
||||
"emulator": "65XEDebugger",
|
||||
"emulator": "atari800 -xl",
|
||||
"defines": {
|
||||
"__ATARIXL__": 1
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user