From dc2c47b34b70b179afa624c1344e44dbb084c981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20A=2E=20Ortega?= Date: Fri, 3 Jun 2016 03:46:33 +0200 Subject: [PATCH] Changing naming convention. --- Makefile | 2 +- src/{HelloWorld.asm => helloworld.asm} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{HelloWorld.asm => helloworld.asm} (100%) diff --git a/Makefile b/Makefile index 12500a5..d79df63 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ AS=as LINKER=ld -OBJ=src/HelloWorld.o +OBJ=src/helloworld.o %.o: %.asm $(AS) -o $@ $< diff --git a/src/HelloWorld.asm b/src/helloworld.asm similarity index 100% rename from src/HelloWorld.asm rename to src/helloworld.asm