Skip to content

Commit

Permalink
Fix kernal const
Browse files Browse the repository at this point in the history
  • Loading branch information
intoinside committed Nov 17, 2022
1 parent 395a050 commit ff0ab77
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions lib/kernal.asm
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
.label DMA_CALL = $FF50 // send command to dma device
.label BOOT_CALL = $FF53 // boot a program from disk
.label PHOENIX = $FF56 // init function cartridges
.label JLKUPLA = $FF59
.label JLKUPSA = $FF5C
.label LKUPLA = $FF59
.label LKUPSA = $FF5C
.label SWAPPER = $FF5F // switch between 40 or 80 colums
.label DLCHR = $FF62 // copy char defintions from ROM to VDC RAM
.label PFKEY = $FF65 // program function key
Expand All @@ -23,31 +23,31 @@
.label INDFET = $FF74 // lda indexed from any bank
.label INDSTA = $FF77 // sta indexed to any bank
.label INDCMP = $FF7A // cmp indexed to any bank
.label JPRIMM = $FF7D
.label JCINT = $FF81
.label JIOINIT = $FF84
.label JRAMTAS = $FF87
.label JRESTOR = $FF8A
.label JVECTOR = $FF8D
.label JSETMSG = $FF90
.label JSECOND = $FF93
.label JTKSA = $FF96
.label JMEMTOP = $FF99
.label JMEMBOT = $FF9C
.label PRIMM = $FF7D
.label CINT = $FF81
.label IOINIT = $FF84
.label RAMTAS = $FF87
.label RESTOR = $FF8A
.label VECTOR = $FF8D
.label SETMSG = $FF90
.label SECOND = $FF93
.label TKSA = $FF96
.label MEMTOP = $FF99
.label MEMBOT = $FF9C
.label KEY = $FF9F // scans the entire c128 keyboard
.label JSETTMO = $FFA2
.label JACPTR = $FFA5
.label JCIOUT = $FFA8
.label JUNTLK = $FFAB
.label JUNLSN = $FFAE
.label JLISTN = $FFB1
.label JTALK = $FFB4
.label JREADSS = $FFB7
.label SETTMO = $FFA2
.label ACPTR = $FFA5
.label CIOUT = $FFA8
.label UNTLK = $FFAB
.label UNLSN = $FFAE
.label LISTN = $FFB1
.label TALK = $FFB4
.label READST = $FFB7
.label SETLFS = $FFBA // set logical file
.label SETNAM = $FFBD // set file name
.label OPEN = $FFC0 // open device channel
.label CLOSE = $FFC3 // close device channel
.label CHKIN = $FFC7 // set channel in
.label CHKIN = $FFC6 // set channel in
.label CHKOUT = $FFC9 // set channel out
.label CLRCH = $FFCC // restore default i/o channels
.label BASIN = $FFCF // input from channel
Expand All @@ -59,8 +59,8 @@
.label STOP = $FFE1 // scan the STOP key
.label GETIN = $FFE4 // get key input
.label CLALL = $FFE7 // close all files and channels
.label JUDTIM = $FFEA
.label UDTIM = $FFEA
.label SCRORG = $FFED // get current screen window size
.label PLOT = $FFF0 // set or read cursor position
// now uses $e4 - $ee, editor parameters
.label JIOBASE = $FFF3
.label IOBASE = $FFF3

0 comments on commit ff0ab77

Please sign in to comment.