Skip to content

Instantly share code, notes, and snippets.

@gnacu
Created November 27, 2024 21:47
Show Gist options
  • Save gnacu/952398196f52ac252258527ee05c9586 to your computer and use it in GitHub Desktop.
Save gnacu/952398196f52ac252258527ee05c9586 to your computer and use it in GitHub Desktop.
unldcsum ;--- Unload checksum.lib ---
.block
lda chloaded
beq done ;Not loaded
ldx #"c" ;checksum.lib
ldy #"h"
lda #slunload ;Unload flag
jsr unldlib
dec chloaded ;Mark as unloaded
clc ;Indicates a resources was potentially freed
rts
done sec ;Indicates nothing was freed
rts
.bend
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment