summaryrefslogtreecommitdiff
path: root/home/sine.asm
blob: 24fb1af92ac06e658fa418e6434ee174f60959b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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

	ld a, [hROMBank]
	push af
	ld a, BANK(_Sine)
	rst Bankswitch

	call _Sine

	pop af
	rst Bankswitch
	ret
; 1b1e