Created
May 18, 2017 18:25
-
-
Save gnacu/9dcc0daa7f1ad12fefaa749624ebdea6 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
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