From 97278a6a6ab73f736dafd788669ac4921dfdaaab Mon Sep 17 00:00:00 2001 From: Robert Grancsa <robiku1975@gmail.com> Date: Sun, 9 Mar 2025 18:09:13 +0200 Subject: [PATCH] changed to spaces Signed-off-by: Robert Grancsa <robiku1975@gmail.com> --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d741cac..d6c60a8 100644 --- a/README.md +++ b/README.md @@ -63,11 +63,11 @@ The mov instructions is the simplest of all, and as the name says, it moves the #### C - ASM translation -| **C Code** | **ASM Code** | -|------------ |---------------- | -| `a = a & 0xFF;` | `AND eax, 0xFF` | -| `b = a | b;` | `OR ebx, eax` | -| `c = a ^ c;` | `XOR ecx, eax` | +| **C Code** | **ASM Code** | +|------------ |---------------- | +| `a = a & 0xFF;` | `AND eax, 0xFF` | +| `b = a | b;` | `OR ebx, eax` | +| `c = a ^ c;` | `XOR ecx, eax` | ### Arithmetic operations -- GitLab