diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-15 13:12:56 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-15 13:12:56 -0400 |
commit | 9f01e33a0428f8a8c206b3f6018f526a41d65b43 (patch) | |
tree | 7f3c8606ebbe0f882955761a899ec9f819412c17 /home/math.asm | |
parent | 0bc1e91d217fb1a724c08ed6c5826c2379f10507 (diff) |
Port miscellaneous recent updates from pokecrystal
Diffstat (limited to 'home/math.asm')
-rw-r--r-- | home/math.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/math.asm b/home/math.asm index 3042cc61..c99214cc 100644 --- a/home/math.asm +++ b/home/math.asm @@ -48,8 +48,8 @@ Divide:: pop hl ret -SubtractSigned:: -; Return a - b, sign in carry. +UnreferencedSubtractAbsolute:: +; Return |a - b|, sign in carry. sub b ret nc cpl |