shithub: pokecrystal

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

View raw version
Cosine:: ; 1b0f
; Return d * cos(a) in hl
	add %010000 ; 90 degrees

Sine:: ; 1b11
; Return d * sin(a) in hl
; a is a signed 6-bit value.

	ld e, a

	homecall _Sine
	ret
; 1b1e