diff options
author | yenatch <yenatch@gmail.com> | 2013-03-30 01:58:22 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-03-30 01:58:22 -0400 |
commit | 6c3ec2d13d30fef17a3e636ef22052d90c61d0b5 (patch) | |
tree | e128adf59585ac8772fc955ed8feb554a984158c /hram.asm | |
parent | e21fc0fad19a4411c613d9caadfe13bc6f438d34 (diff) |
Multiply and Divide
Diffstat (limited to 'hram.asm')
-rw-r--r-- | hram.asm | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -26,6 +26,16 @@ hJoyDown EQU $ffa8 hPastLeadingZeroes EQU $ffb3 +hDividend EQU $ffb3 +hDivisor EQU $ffb7 +hQuotient EQU $ffb4 + +hMultiplicand EQU $ffb4 +hMultiplier EQU $ffb7 +hProduct EQU $ffb3 + +hMathBuffer EQU $ffb8 + hLCDStatCustom EQU $ffc6 hBGMapMode EQU $ffd4 |