tb_6502: Fix Makefile to work for recent cc65

For some reason they made the command line arg order stricter.
This commit is contained in:
Vince Weaver 2012-12-18 21:52:05 -05:00
parent 1c5f7cf293
commit 46e442b38a
1 changed files with 2 additions and 2 deletions

View File

@ -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