Skip to content
Snippets Groups Projects
Commit 97278a6a authored by Robert Grancsa's avatar Robert Grancsa
Browse files

changed to spaces


Signed-off-by: default avatarRobert Grancsa <robiku1975@gmail.com>
parent a9b7e062
No related branches found
No related tags found
No related merge requests found
......@@ -63,11 +63,11 @@ The mov instructions is the simplest of all, and as the name says, it moves the
#### C - ASM translation
| **C Code** | **ASM Code** |
|------------ |---------------- |
| `a = a & 0xFF;` | `AND eax, 0xFF` |
| `b = a | b;` | `OR ebx, eax` |
| `c = a ^ c;` | `XOR ecx, eax` |
| **C Code** | **ASM Code** |
|------------ |---------------- |
| `a = a & 0xFF;` | `AND eax, 0xFF` |
| `b = a | b;` | `OR ebx, eax` |
| `c = a ^ c;` | `XOR ecx, eax` |
### Arithmetic operations
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment