diff options
| author | YamaArashi <shadow962@live.com> | 2016-06-11 17:51:03 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-11 17:51:03 -0700 |
| commit | 54143d33fc1211fb0c949ba62633d1c8d94f2717 (patch) | |
| tree | 9176ffc5b6384a48eb32ea8f33ac97d1d67f6865 /engine/multiply_divide.asm | |
| parent | Merge pull request #14 from PikalaxALT/master (diff) | |
| parent | remove address comments (diff) | |
| download | pokeyellow-54143d33fc1211fb0c949ba62633d1c8d94f2717.tar.gz pokeyellow-54143d33fc1211fb0c949ba62633d1c8d94f2717.tar.xz pokeyellow-54143d33fc1211fb0c949ba62633d1c8d94f2717.zip | |
Merge pull request #13 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 6ff427c6..2bc26de2 100755 --- a/engine/multiply_divide.asm +++ b/engine/multiply_divide.asm @@ -1,4 +1,4 @@ -_Multiply: ; f660e (3d:660e) +_Multiply: ld a, $8 ld b, a xor a @@ -60,7 +60,7 @@ _Multiply: ; f660e (3d:660e) ld [H_PRODUCT], a ; $ff95 ret -_Divide: ; f6672 (3d:6672) +_Divide: xor a ld [H_DIVIDEBUFFER], a ; ff9a ld [H_DIVIDEBUFFER+1], a ; ff9b |
