1
0
mirror of https://github.com/rkujawa/rk65c02.git synced 2026-03-11 18:42:35 +00:00
Files
rk65c02/test/functional_tests/Makefile
Radosław Kujawa e2571da31a Integrate Klaus Dormann's 6502 functional test suite with ATF/Kyua.
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
2026-03-06 20:49:32 +01:00

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