cc65/test/asm
mrdudz b993d88339 second half of #2420 - don't use the loop macro. Fixes -j13 for me 2024-03-17 17:19:42 +01:00
..
cpudetect Add proper readmes 2022-02-20 11:20:20 +01:00
err tests verifying jmp (indirect) page crossing error on 6502, and the lack of error for other CPU types 2023-08-19 14:36:30 -04:00
listing linkter test with custom config should not use none.lib 2023-03-07 18:48:30 -05:00
misc sim65 64-bit cycle count tests 2023-05-07 16:33:47 -04:00
opcodes Add proper readmes 2022-02-20 11:20:20 +01:00
val fix dangling space, mention .union in test comment 2023-12-16 19:25:21 -05:00
Makefile second half of #2420 - don't use the loop macro. Fixes -j13 for me 2024-03-17 17:19:42 +01:00
readme.txt sim65 64-bit cycle count tests 2023-05-07 16:33:47 -04:00

readme.txt

Assembler Testcases
===================

cpudetect
---------

Tests the --cpu command line option of ca65/ld65.
Refer to cpudetect/readme.txt


opcodes
-------

Test of assembler opcodes for each CPU.
Refer to opcodes/readme.txt


err:
----

Used to test assembler errors. These tests MUST NOT assemble without error.


listing:
--------

This is the most versatile assembler test form, allowing control customizations,
reference tests for binary output, stdout and error text ouput, error tests,
listings, custom linker configuration, etc. as needed.
Refer to listing/readme.txt


val:
----

Runtime assembly tests using sim65 that should end with an exit code of 0 if
they pass. If they fail the exit code should be either -1, or a number
indicating what part of the test failed.


misc:
-----

This is for tests that require special make steps or conditions.