shithub: pokecrystal

ref: 33ad00f1abfd791734dcbe33e79f0a49af32958d
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