Last active
November 27, 2024 21:05
-
-
Save gnacu/fb8000d99d733b94d1f378a5509e9345 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chloaded .byte 0 | |
ldchksum ;--- Load checksum.lib --- | |
.block | |
lda chloaded | |
bne done ;Already loaded | |
ldx #"c" ;checksum.lib | |
ldy #"h" | |
lda #3 ;3 pages, no flags | |
jsr loadlib | |
;A <- page address of library | |
;--- Link checksum.lib --- | |
sta maketab+2 | |
sta initcrc+2 | |
sta updc16+2 | |
sta getcrc+2 | |
inc chloaded ;Mark as loaded | |
done rts | |
.bend |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment