From a51999ac56c46435ad5884cf755c2c86d343d926 Mon Sep 17 00:00:00 2001 From: pocari Date: Sun, 9 Sep 2018 17:22:36 +0900 Subject: [PATCH] fix offset --- questions/answers/044.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/questions/answers/044.md b/questions/answers/044.md index f0d2132..ff91848 100644 --- a/questions/answers/044.md +++ b/questions/answers/044.md @@ -13,9 +13,9 @@ What will be the contents of byte at address `[rsp+3]` ? Because of __little endian__: * `rsp + 0` - 0x88 -* `rsp + 1` - 0x77 -* `rsp + 2` - 0x66 -* `rsp + 2` - 0x55 +* `rsp + 1` - 0x77 +* `rsp + 2` - 0x66 +* `rsp + 3` - 0x55