We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f286499 commit 2266f39Copy full SHA for 2266f39
README.md
@@ -24,6 +24,12 @@ A simulator which provides a simplified assembler syntax (based on NASM) and is
24
mov a, 2
25
pow a, 3 ; after that the register A contains 8
26
```
27
+ - MOD (mod) : computes the modulo a % b (a MOD b)
28
+ ```asm
29
+ ; for example
30
+ mov a, 15
31
+ mod a, 4 ; after that the register A contains 3
32
+ ```
33
34
---
35
0 commit comments