mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
c3c18dd196
(Some unreferenced labels are above code which is still used via fallthrough!)
10 lines
164 B
NASM
10 lines
164 B
NASM
Cosine:: ; unreferenced
|
|
; 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
|