From c30b3e3c11a1fa92040ea9748834d0f123de4a1f Mon Sep 17 00:00:00 2001 From: SyntaxError! <169557594+synt-xerror@users.noreply.github.com> Date: Fri, 23 Jan 2026 19:54:38 -0300 Subject: [PATCH] Update readme with build instructions --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index c4cc55b..b18c8f3 100644 --- a/README.md +++ b/README.md @@ -1 +1,14 @@ Made for my studies on low-level programming + +--- + +Clone and cd: +`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` + +Run: +`./calculator`