blob: eff5ed29928b1e15781b44f0656659d33ff9794c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|