Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 446 Bytes

File metadata and controls

44 lines (32 loc) · 446 Bytes

Scooters

CLI app written in Assembly (x86-64) for searching and viewing scooter data.

Requirements

  • macOS (x86_64)
  • NASM (Netwide Assembler)
  • Make

Install NASM:

brew install nasm

Build

make

Or manually:

nasm -f macho64 -o src/main.o src/main.asm
gcc -o scooters src/main.o

Running

./scooters

Or:

make run

Clean

To remove build files:

make clean