Skip to content

Instantly share code, notes, and snippets.

@gnacu
Last active November 27, 2024 21:05
Show Gist options
  • Save gnacu/fb8000d99d733b94d1f378a5509e9345 to your computer and use it in GitHub Desktop.
Save gnacu/fb8000d99d733b94d1f378a5509e9345 to your computer and use it in GitHub Desktop.
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