diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ # Trigonometric functions table generator (assembler NASM) -<img scr="trigonometric-table.png" /> +<img src="trigonometric-table.png" /> ## Introduction @@ -28,7 +28,7 @@ commands for arithmetic operations (fsin, fcos, fptan). Fptan calculates a value in a very interesting way: it places 1 on the top of the stack (ST0), and places the result (the tangent value) behind the top (ST1). -That is done to simplify the calculation of cotangent ($`1/tang`$). +That is done to simplify the calculation of cotangent (`1/tang`). Therefore, we divide ST0 by ST1 using the fdivp command, and the result is written to the top of the stack. |