diff options
| author | YamaArashi <shadow962@live.com> | 2016-06-11 17:30:20 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-11 17:30:20 -0700 |
| commit | 7e12ca56a8d04d33f3945bb5b981c311fcdd44ef (patch) | |
| tree | 8a61aee33d6b47e960dc71dbb89c096622bbdc95 /engine/multiply_divide.asm | |
| parent | Implement handy text macros from yellow (diff) | |
| parent | remove address comments (diff) | |
| download | pokeyellow-7e12ca56a8d04d33f3945bb5b981c311fcdd44ef.tar.gz pokeyellow-7e12ca56a8d04d33f3945bb5b981c311fcdd44ef.tar.xz pokeyellow-7e12ca56a8d04d33f3945bb5b981c311fcdd44ef.zip | |
Merge pull request #133 from YamaArashi/master
Remove address comments
Diffstat (limited to 'engine/multiply_divide.asm')
| -rwxr-xr-x | engine/multiply_divide.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/multiply_divide.asm b/engine/multiply_divide.asm index ec16c42b..52e86b36 100755 --- a/engine/multiply_divide.asm +++ b/engine/multiply_divide.asm @@ -1,4 +1,4 @@ -_Multiply: ; 37d41 (d:7d41) +_Multiply: ld a, $8 ld b, a xor a @@ -59,7 +59,7 @@ _Multiply: ; 37d41 (d:7d41) ld [H_PRODUCT], a ret -_Divide: ; 37da5 (d:7da5) +_Divide: xor a ld [H_DIVIDEBUFFER], a ld [H_DIVIDEBUFFER+1], a |
