diff options
Diffstat (limited to 'home/sine.asm')
-rw-r--r-- | home/sine.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/sine.asm b/home/sine.asm index 09d06ca89..24fb1af92 100644 --- a/home/sine.asm +++ b/home/sine.asm @@ -1,8 +1,8 @@ -Cosine: ; 1b0f +Cosine:: ; 1b0f ; Return d * cos(a) in hl add $10 ; 90 degrees -Sine: ; 1b11 +Sine:: ; 1b11 ; Return d * sin(a) in hl ; a is a signed 6-bit value. |