Update readme with build instructions

This commit is contained in:
SyntaxError!
2026-01-23 19:54:38 -03:00
committed by GitHub
parent 2c98e72c86
commit c30b3e3c11

View File

@@ -1 +1,14 @@
Made for my studies on low-level programming 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`