From 76572a39adbf85c733166f3d03d359447abb2c60 Mon Sep 17 00:00:00 2001 From: "(Tim) Efthimis Kritikos" Date: Thu, 9 Feb 2023 09:43:13 +0000 Subject: [PATCH] Fix documentation --- 8086_documentation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 |