1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-06-07 12:29:27 +00:00

Add instructions on how to assemble the binary test cases

This commit is contained in:
kris 2019-08-20 21:18:15 +01:00
parent 3468cdce1c
commit 803632c15a

View File

@ -0,0 +1,7 @@
These were compiled with the ca65 assembler available at http://cc65.org
$ ca65 --cpu 6502 6502_decimal_test.c65 --listing 6502_decimal_test.lst
$ ld65 -t none -o 6502_decimal_test.bin 6502_decimal_test.o
$ ca65 --cpu 65C02 65C02_decimal_test.c65 --listing 65C02_decimal_test.lst
$ ld65 -t none -o 65C02_decimal_test.bin 65C02_decimal_test.o