Skip to content

Instantly share code, notes, and snippets.

@gnacu
Created May 18, 2017 18:25
Show Gist options
  • Save gnacu/9dcc0daa7f1ad12fefaa749624ebdea6 to your computer and use it in GitHub Desktop.
Save gnacu/9dcc0daa7f1ad12fefaa749624ebdea6 to your computer and use it in GitHub Desktop.
inttohex ;.A -> int
;.X <- lo hex digit
;.Y <- hi hex digit
.block
PHA
LSR
LSR
LSR
LSR
TAX
LDA hexits,x
STA tmp
PLA
AND #%00001111
TAX
LDA hexits,x
TAX
LDY tmp
RTS
tmp .byte 0
hexits .text "0123456789abcdefg"
.bend
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment