From b38d4d0591d8f7b45a9a05474f3f688c8a394457 Mon Sep 17 00:00:00 2001 From: Alpay Yildirim Date: Wed, 12 Sep 2018 11:28:49 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9E=95=20Add=20Text=20x86=20registers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 369ccdd..85fdc79 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,11 @@ Knowledge I have found interesting about the topic of x86 assembly ## x86 Registers ![x86 assembly Registers](x86-registers.png) + +In **x86 registers** have an '**e**' in front of their name.
+Example: **e**ax, **e**bx, **e**cx, **e**dx, **e**bp + +*Additional Info:
+In **x64** you have a '**r**' instead.
+Example: **r**ax, **r**bx, **r**cx, **r**dx, **r**bp
+You also have **double-precision floating point going from xmm0 to xmm15**.*