diff options
Diffstat (limited to 'home/sine.asm')
-rw-r--r-- | home/sine.asm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/home/sine.asm b/home/sine.asm index a32a31612..821f7c47d 100644 --- a/home/sine.asm +++ b/home/sine.asm @@ -1,10 +1,9 @@ -Cosine:: ; 1b0f +Cosine:: ; a = d * cos(a * pi/32) add %010000 ; cos(x) = sin(x + pi/2) ; fallthrough -Sine:: ; 1b11 +Sine:: ; a = d * sin(a * pi/32) ld e, a homecall _Sine ret -; 1b1e |