shithub: pokecrystal

ref: 6a3045d759d7172c2687bf41f3ef4aa9065ee273
dir: /home/sine.asm/

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

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

	ld e, a

	homecall _Sine
	ret
; 1b1e