diff options
author | yenatch <yenatch@gmail.com> | 2014-02-01 20:26:39 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-02-01 20:26:39 -0500 |
commit | cf2acc100193f599b4521a961c9bff6a78be8217 (patch) | |
tree | 8d79a8a8f7f192ecabdd7a6c9fbfcdab7b5dffb8 /home/sine.asm | |
parent | adb3b29b4dcd8330df1b4cbe7ff24cd9aa614c14 (diff) |
Use :: to export labels between objects.
This fixes the build.
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. |