shithub: pokecrystal

ref: ef452ccbc7e448a490d1d081c63088cce7b73b0b
dir: /home/sine.asm/

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