Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Latest commit

 

History

History
13 lines (13 loc) · 475 Bytes

README.md

File metadata and controls

13 lines (13 loc) · 475 Bytes

i-need-coffee

Small project to get acquainted with the intel X86 assembly language. i-need-coffee

How to build

$ nasm -f elf32 makeCoffees.asm # Compile the assembly code
$ ld -m elf_i386 -s -o makeCoffees makeCoffees.o # Link the object file

How to run

$ chmod +x makeCoffees # Make the executable file executable
$ ./makeCoffees # Run the executable file