Fix documentation

This commit is contained in:
(Tim) Efthimis Kritikos 2023-02-09 09:43:13 +00:00
parent 5371caa3bb
commit 76572a39ad

View File

@ -51,8 +51,8 @@ Example instructions:
| Bytecode | AT&T Syntax | meaning | | Bytecode | AT&T Syntax | meaning |
| ---------- | --------------- | ---------------------------------------------------------- | | ---------- | --------------- | ---------------------------------------------------------- |
|81 c0 aa 55 | add $0x55aa,%ax | write 0x55aa to register ax | |81 c0 aa 55 | add $0x55aa,%ax | add 0x55aa to register ax |
|03 06 aa 55 | add 0x55aa,%ax | write the contents of memory locaton 0x55aa to register ax | |03 06 aa 55 | add 0x55aa,%ax | add the contents of memory locaton 0x55aa to register ax |
|fe c0 | inc %al | increment register al | |fe c0 | inc %al | increment register al |
|ff c0 | inc %ax | increment register ax | |ff c0 | inc %ax | increment register ax |
|40 | inc %ax | increment register ax | |40 | inc %ax | increment register ax |