Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 747 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 747 Bytes

Assembly Template

Welcome to my x86-64 assembly template. Your main file is going to be in main.asm. Linking and compiling options are in the Makefile. main.asm` is already set up with a simple "Hello, world!" program, so feel free to edit that. The debugger is also setup with GDB.

Below are some resources to learn the language:

Makefile commands

To run, simply just do make -s. That runs make and hides the extra output you get when running. You can go to the Makefile here to see any specific commands you might want to run.