move common asm from engine/ to common/

engine/ was getting really bloated and common asm wasnt what it was made for
This commit is contained in:
yenatch
2013-09-07 23:38:19 -04:00
parent 7a3a4f913b
commit 9f53825ce2
20 changed files with 19 additions and 19 deletions

View File

@@ -1,22 +0,0 @@
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