CLI app written in Assembly (x86-64) for searching and viewing scooter data.
- macOS (x86_64)
- NASM (Netwide Assembler)
- Make
Install NASM:
brew install nasmmakeOr manually:
nasm -f macho64 -o src/main.o src/main.asm
gcc -o scooters src/main.o./scootersOr:
make runTo remove build files:
make clean