Last active
May 18, 2017 18:15
-
-
Save gnacu/305755be610453aeb37ebe4a8d364181 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
LDA factor | |
STA multiplier | |
LDA #0 | |
STA multiplier+1 | |
next DEC factor | |
BEQ done | |
LDA factor | |
STA multiplicand | |
LDA #0 | |
STA multiplicand+1 | |
JSR mult16 | |
LDA product | |
STA multiplier | |
LDA product+1 | |
STA multiplier+1 | |
JMP next | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment