mirror of
https://github.com/rkujawa/rk65c02.git
synced 2026-03-11 18:42:35 +00:00
Adapt the imported suite to the rk65c02 memory layout, add an ATF/Kyua harness with PC-trap pass/fail detection, and fix emulator correctness issues surfaced by the suite (LDX ZP,Y size, PLX/PLY flags, zero-page wrapping, and BBR/BBS branch base). Made-with: Cursor
18 lines
268 B
Makefile
18 lines
268 B
Makefile
SRCS = \
|
|
6502_decimal_test.ca65 \
|
|
6502_functional_test.ca65 \
|
|
65C02_extended_opcodes_test.ca65
|
|
|
|
OBJS = $(SRCS:%.ca65=%.bin)
|
|
CFG = rk65c02.cfg
|
|
|
|
all: $(OBJS)
|
|
|
|
%.bin: %.ca65
|
|
ca65 -l $*.lst $<
|
|
ld65 $*.o -o $@ -m $*.map -C $(CFG)
|
|
|
|
clean:
|
|
rm -f *.o *.bin *.lst *.map
|
|
|