diff --git a/8086_documentation.md b/8086_documentation.md index 50108e1..af3bbd5 100644 --- a/8086_documentation.md +++ b/8086_documentation.md @@ -51,8 +51,8 @@ Example instructions: | Bytecode | AT&T Syntax | meaning | | ---------- | --------------- | ---------------------------------------------------------- | -|81 c0 aa 55 | add $0x55aa,%ax | write 0x55aa to register ax | -|03 06 aa 55 | add 0x55aa,%ax | write the contents of memory locaton 0x55aa to register ax | +|81 c0 aa 55 | add $0x55aa,%ax | add 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 | |ff c0 | inc %ax | increment register ax | |40 | inc %ax | increment register ax |