shithub: pokecrystal

ref: 9433b5a75294a76527bfcb661ee57a43202d7185
dir: /home/sine.asm/

View raw version
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