Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
A4-Tacks committed Sep 28, 2024
1 parent a7c07ca commit 2148f06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ Unless otherwise specified, return the value before the memory operation
| add | `m += n` |
| sub | `m -= n` |
| mul | `m *= n` |
| abs | `m = abs(o)` |
| abs | `m = abs(m)` |
| max | `m = max(m, n)` |
| min | `m = min(m, n)` |
| and | `m &= n` |
| nand | `m = ~(m & n)` |
| or | `m `|= n |
| or | `m \|= n` |
| xor | `m ^= n` |
| shl | `m <<= n` |
| shr | `m >>= n` |
| flip | `m = ~m` |
| stor | `m = n` |
| swpi | `m, mem[n] = mem[n], m` |
| swap | `m, n[i] = n[i], m` |
| lock | `rwlock(m, n, i)` |
| lock | `rwlock(m, n, i)`\* |


Complex Commands
Expand Down

0 comments on commit 2148f06

Please sign in to comment.