LHenrique42 / calculator-nasm

Calculator made in ASM.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Calculator ASM

Calculator made in ASM (Portuguese)

Install NASM if you don't have (Linux):

sudo apt install as31 nasm 

Execute:

nasm -f elf64 calculator.asm # assemble the program  
ld -s -o calculator calculator.o # link the object file nasm produced into an executable file    
./calculator # calculator is an executable file 

About

Calculator made in ASM.

License:MIT License


Languages

Language:Assembly 100.0%