Skip to content

Commit

Permalink
Added kernal namespace to prevent label ambiguity
Browse files Browse the repository at this point in the history
  • Loading branch information
intoinside committed Nov 26, 2022
1 parent e0c385b commit 004b549
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/kernal.asm
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#importonce
.filenamespace c128lib

.namespace Kernal {

.label SPIN = $FF47 // Serial fast input or output
.label CLOSE_ALL = $FF4A // Close all files to a device
.label C64MODE = $FF4D // Enter 64 mode
Expand Down Expand Up @@ -63,4 +65,6 @@
.label SCRORG = $FFED // Get current screen window size
.label PLOT = $FFF0 // Set or read cursor position
// Now uses $e4 - $ee, editor parameters
.label IOBASE = $FFF3 // Reads base address of I/O block
.label IOBASE = $FFF3 // Reads base address of I/O block

}

0 comments on commit 004b549

Please sign in to comment.