From e6180b82d89d69846cfdd7881dd067ff38ea6a79 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 26 Jul 2020 15:47:04 +0200 Subject: Update x86inc.asm. Also, switch from yasm to nasm. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6a682f1..457489d 100644 --- a/Makefile +++ b/Makefile @@ -30,8 +30,8 @@ $(TARGET): $(OBJS) $(CC) $(CFLAGS) -MMD -MF $(@:.o=.d) -MT $@ -c -o $@ $< %.o: %.asm - yasm -f elf -m amd64 -M $< > $(@:.o=.d) - yasm -f elf -m amd64 -o $@ $< + nasm -f elf64 -M $< > $(@:.o=.d) + nasm -f elf64 -o $@ $< clean: -rm -f *.o *.d *.pyc $(TARGET) -- cgit v1.2.3