pokecrystal/home/sine.asm

14 lines
177 B
NASM
Raw Normal View History

Cosine:: ; 1b0f
2013-09-03 22:40:12 +00:00
; Return d * cos(a) in hl
2018-01-09 21:39:36 +00:00
add %010000 ; 90 degrees
2013-09-03 22:40:12 +00:00
Sine:: ; 1b11
2013-09-03 22:40:12 +00:00
; Return d * sin(a) in hl
; a is a signed 6-bit value.
ld e, a
2016-05-27 14:41:59 +00:00
homecall _Sine
2013-09-03 22:40:12 +00:00
ret
; 1b1e