diff options
author | yenatch <yenatch@gmail.com> | 2013-09-09 22:44:48 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-09-09 22:44:48 -0400 |
commit | 84a9b3907b9db08ee38e873554d8a6b4ac1b72b4 (patch) | |
tree | e804b9ed15832481d632904f42355743d9232515 /home/sine.asm | |
parent | 6439706943b53ad756d481dea683fa8ee97f4981 (diff) |
rename common/ to home/
Diffstat (limited to 'home/sine.asm')
-rw-r--r-- | home/sine.asm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/home/sine.asm b/home/sine.asm new file mode 100644 index 000000000..09d06ca89 --- /dev/null +++ b/home/sine.asm @@ -0,0 +1,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 + |