1,885
edits
Changes
→Starter Kit
pop r0 // pop r0 off the stack
udiv r0,r1,r2 // unsigned - divide r1 by r2, places quotient into r0 - remainder is not calculated (use msub)
Note the syntax:
* [[Register]] names are not prefaced.
* [[Immediate Value|Immediate values]] are not prefaced with a character (they may be prefaced with # if desired).
* Indirect memory access is indicated by [square brackets].
* Destinations are given as the first argument (mov r0, r1 moves INTO r0 FROM r1).
== References ==