#!/bin/sh
# Assemble program
# Usage: ./m ac1 (or whatever the main program is)

nasm $1.asm -felf -o$1.o \
&& ld -o$1 $1.o \
&& strip -R .comment $1
