From 2f28f0cb076501157069fb9d2eb19825e809d888 Mon Sep 17 00:00:00 2001 From: Amanda Rousseau Date: Mon, 27 Mar 2017 14:18:19 -0700 Subject: [PATCH] fixing lea --- fundamentals3.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fundamentals3.md b/fundamentals3.md index 15d945c..ca4014c 100644 --- a/fundamentals3.md +++ b/fundamentals3.md @@ -28,12 +28,12 @@ The x86 architecture is **little-endian**, meaning that multi-byte values are wr Each Instruction represents opcodes (hex code) that tell the machine what to do next. Three categories of instructions: -* Data Movement +* Data Movement/Access * Arithmetic / Logic * Control-Flow Common Instructions -* **mov, lea** (data movement) +* **mov, lea** (data movement, data access) * **add, sub** (arithmetic) * **or, and, xor** (Logic) * **shr, shl** (Logic)