Port the first set of C64 Kernal labels to X16

This commit is contained in:
Philip Zembrod 2020-08-30 01:20:42 +02:00
parent 71c40dbe2f
commit b7ef25633f
3 changed files with 21 additions and 14 deletions

View File

@ -13,8 +13,8 @@ include vf-lbls-cbm.fth
0ff19 >label BrdCol 0ff19 >label BrdCol
0ff15 >label BkgCol 0ff15 >label BkgCol
053b >label PenCol 053b >label PenCol
09d >label PrgEnd 09d >label PrgEnd \ aka eal; seems unused
0b2 >label IOBeg 0b2 >label IOBeg \ aka stal; seems unused
0cb >label CurFlg 0cb >label CurFlg
0cf >label InsCnt 0cf >label InsCnt
0540 >label KeyRep 0540 >label KeyRep

View File

@ -13,8 +13,8 @@ include vf-lbls-cbm.fth
0d020 >label BrdCol 0d020 >label BrdCol
0d021 >label BkgCol 0d021 >label BkgCol
0286 >label PenCol 0286 >label PenCol
0ae >label PrgEnd 0ae >label PrgEnd \ aka eal; seems unused
0c1 >label IOBeg 0c1 >label IOBeg \ aka stal; seems unused
0d4 >label CurFlg 0d4 >label CurFlg
0d8 >label InsCnt 0d8 >label InsCnt
028a >label KeyRep 028a >label KeyRep

View File

@ -1,23 +1,30 @@
include vf-lbls-cbm.fth include vf-lbls-cbm.fth
\ *** Block No. 127, Hexblock 7f
7f fthpage 7f fthpage
\ C64-Labels clv13.4.87) \ C64-Labels clv13.4.87)
0E716 >label ConOut
09d >label MsgFlg
09a >label OutDev
099 >label InDev
0d020 >label BrdCol 0d020 >label BrdCol
0d021 >label BkgCol 0d021 >label BkgCol
0286 >label PenCol 0286 >label PenCol
0ae >label PrgEnd
0c1 >label IOBeg \ X16 labels
0d4 >label CurFlg
0d8 >label InsCnt 0fede >label console_put_char
028a >label KeyRep 028c >label MsgFlg
028b >label OutDev
028a >label InDev
8a >label PrgEnd \ aka eal; seems unused
0292 >label IOBeg \ aka stal; seems unused
0381 >label CurFlg \ aka qtsw
0385 >label InsCnt \ aka insrt
Label ConOut clc console_put_char jmp
\ C64 labels that X16 doesn't have:
\ 028a >label KeyRep \ aka rptflg
\ *** Block No. 129, Hexblock 81 \ *** Block No. 129, Hexblock 81