From 6126ee8ac7d683f9bb95de0baed1a5fca5e975fd Mon Sep 17 00:00:00 2001 From: SyntaxError! <169557594+synt-xerror@users.noreply.github.com> Date: Fri, 23 Jan 2026 19:56:04 -0300 Subject: [PATCH] Fixing readme --- README.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b18c8f3..f9c57ff 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,18 @@ Made for my studies on low-level programming --- Clone and cd: -`git clone https://github.com/synt-xerror/assembly-calculator` -`cd assembly-calculator` +``` +git clone https://github.com/synt-xerror/assembly-calculator +cd assembly-calculator +``` Assemble using `nasm` and link using `ld`: -`nasm -f elf64 calculator.s -o calculator.o` -`ld calculator.o -o calculator` +``` +nasm -f elf64 calculator.s -o calculator.o +ld calculator.o -o calculator +``` Run: -`./calculator` +``` +./calculator +```