mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
14 lines
173 B
NASM
14 lines
173 B
NASM
Cosine:: ; 1b0f
|
|
; Return d * cos(a) in hl
|
|
add $10 ; 90 degrees
|
|
|
|
Sine:: ; 1b11
|
|
; Return d * sin(a) in hl
|
|
; a is a signed 6-bit value.
|
|
|
|
ld e, a
|
|
|
|
homecall _Sine
|
|
ret
|
|
; 1b1e
|