From 46e442b38a34b42ce8d1dde4491316ec04489904 Mon Sep 17 00:00:00 2001 From: Vince Weaver Date: Tue, 18 Dec 2012 21:52:05 -0500 Subject: [PATCH] tb_6502: Fix Makefile to work for recent cc65 For some reason they made the command line arg order stricter. --- tb_6502/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tb_6502/Makefile b/tb_6502/Makefile index 586d506..300a124 100644 --- a/tb_6502/Makefile +++ b/tb_6502/Makefile @@ -5,10 +5,10 @@ TB_6502: tb_6502 make_b ./tb_6502 ./TB_6502 0xC00 tb_6502: tb_6502.o - ld65 -C ./apple2_c00.inc -o tb_6502 tb_6502.o + ld65 -o tb_6502 tb_6502.o -C ./apple2_c00.inc tb_6502.o: tb_6502.s - ca65 -o tb_6502.o -l tb_6502.s + ca65 -o tb_6502.o tb_6502.s -l tb_6502.lst disk: dos33 tb_6502.dsk SAVE B TB_6502