back to scratko.xyz
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 80add1a..5dda44d 100644
--- a/README.md
+++ b/README.md
@@ -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.