shithub: pokecrystal

ref: 49458edf94af31a3bf87c227c7f20870c6c38206
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