diff options
author | Ian Moffett <ian@osmora.org> | 2024-07-27 16:38:34 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-07-27 16:38:34 -0400 |
commit | 955bf177c744d4125e40b87fd2c85ee19535cdaa (patch) | |
tree | d390d43c52fc90f08ff919695fc2d121957dd75a | |
parent | 2d90b4a97673d2900d18b76aeec4fec27a37e5e1 (diff) |
Cleanup
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 ``` |