From c67894551b1bb0075f7815246a7df39bc8107f14 Mon Sep 17 00:00:00 2001 From: Nero <41307858+nero@users.noreply.github.com> Date: Tue, 31 Mar 2020 18:43:38 +0000 Subject: [PATCH] Use directory path for includes, make them use *.asm as extension --- Makefile | 2 +- inc/{bpb.inc => bpb.asm} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename inc/{bpb.inc => bpb.asm} (100%) diff --git a/Makefile b/Makefile index 9f66305..60ef8a2 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ QEMU = qemu-system-$(QEMU_ARCH) QEMU_ARGS = $(addprefix --option-rom ,$(ROMS)) NASM = nasm -NASM_ARGS = -s -I. -Iinc -w-macro-params -DFLOPPY=$(FLOPPY) +NASM_ARGS = -s -DFLOPPY=$(FLOPPY) EMUL = utils/emul diff --git a/inc/bpb.inc b/inc/bpb.asm similarity index 100% rename from inc/bpb.inc rename to inc/bpb.asm