Skip to content

Commit

Permalink
fix dup label
Browse files Browse the repository at this point in the history
  • Loading branch information
mooinglemur committed Mar 11, 2024
1 parent 0ca2601 commit 9a6cbb0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion kernal/cbm/channel/channel.s
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ untlk = $ffab

; misc x16 additions
.export clear_status
.export getlfs
.export extapi_getlfs


.segment "ZPCHANNEL" : zeropage
Expand Down
2 changes: 1 addition & 1 deletion kernal/cbm/channel/x16additions.s
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ clear_status:
stz status
rts

getlfs:
extapi_getlfs:
lda la
ldx fa
ldy sa
Expand Down
4 changes: 2 additions & 2 deletions kernal/x16/extapi.s
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.import clear_status
.import getlfs
.import extapi_getlfs

.export extapi

Expand Down Expand Up @@ -32,5 +32,5 @@ secrts:
apitbl:
.word secrts-1 ; slot 0 is reserved
.word clear_status-1 ; API 1
.word getlfs-1 ; API 2
.word extapi_getlfs-1 ; API 2

0 comments on commit 9a6cbb0

Please sign in to comment.