Skip to content

Instantly share code, notes, and snippets.

@gnacu
Last active May 18, 2017 18:15
Show Gist options
  • Save gnacu/305755be610453aeb37ebe4a8d364181 to your computer and use it in GitHub Desktop.
Save gnacu/305755be610453aeb37ebe4a8d364181 to your computer and use it in GitHub Desktop.
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