From 87c505b8a80dc3d552670250c3736889af7d22d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Carlos=20Cuevas?= Date: Sat, 6 Jun 2020 13:43:05 +0200 Subject: [PATCH] Created a makefile for simplified assembly and Vim comfort --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e8384da --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +FASM = fasm + +mine.exe: mine.asm + $(FASM) $? $@