/Baby-Calculator-Assembly

A simple calculator in nasm64.

Primary LanguageAssemblyMIT LicenseMIT

Baby-Calculator-Assembly-

image

Here is a little assembly calculator. It can only add, multiply, divide and subtract numbers below 9. And the result must be below 9 😀😅

For compile the program you have to do

nasm -f elf64 babycalculator.asm -o babycalculator.o && ld babycalculator.o -o babycalculator

And for run it

./babycalculator