mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
10 lines
149 B
NASM
10 lines
149 B
NASM
Cosine::
|
|
; a = d * cos(a * pi/32)
|
|
add %010000 ; cos(x) = sin(x + pi/2)
|
|
; fallthrough
|
|
Sine::
|
|
; a = d * sin(a * pi/32)
|
|
ld e, a
|
|
homecall _Sine
|
|
ret
|