Created
April 4, 2014 06:16
-
-
Save dan-silver/9969118 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
ORG $B000 | |
DATA1 FCB 5 | |
DATA2 FCB 6 | |
RESULT RMB 1 | |
ORG $C000 | |
LDS #$A000 | |
LDX #DATA1 | |
PSHX | |
LDX #DATA2 | |
PSHX | |
JSR SUB | |
STAA RESULT | |
END BRA END | |
ORG $D000 | |
SUB PULY | |
PULX | |
LDAA 0,X | |
PULX | |
LDAB 0,X | |
PSHY | |
ABA | |
RTS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment