#!/bin/bash

#	------------------------------------------------------------------
#	NOTE: This will assemble a .asm program in the languageONE 
#	directory
#	------------------------------------------------------------------
if _NASM/nasm -f elf64 -F dwarf -w-all -O0 $1.ASM; then
	echo assemble process has completed
fi

