summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-07-27 16:38:34 -0400
committerIan Moffett <ian@osmora.org>2024-07-27 16:38:34 -0400
commit955bf177c744d4125e40b87fd2c85ee19535cdaa (patch)
treed390d43c52fc90f08ff919695fc2d121957dd75a
parent2d90b4a97673d2900d18b76aeec4fec27a37e5e1 (diff)
Cleanup
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 0985312..0590f23 100644
--- a/README.md
+++ b/README.md
@@ -58,7 +58,7 @@ Arithmetic operations can write to all registers except `v0`-`v7` and `pc`. Can
| `mul` dst: r/m, val: r/m/imm | `dst` = `dst` * `val` |
| `div` dst: r/m, val: r/m/imm | `dst` = `dst` / `val` |
| `inc` dst: r/m | `dst` = `dst` + `1` |
-| `dec` dst: r/m | `dst` = `dst` - `1` |
+| `dec` dst: r/m | `dst` = `dst` - `1` |
#### Example
```