From f348da21a26a91f02140e07e28f019fa24a5ff34 Mon Sep 17 00:00:00 2001 From: Curtis F Kaylor Date: Wed, 20 Nov 2019 01:10:51 -0500 Subject: [PATCH] Created file test/README.md --- test/README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 test/README.md diff --git a/test/README.md b/test/README.md new file mode 100644 index 0000000..0180a21 --- /dev/null +++ b/test/README.md @@ -0,0 +1,27 @@ +C02 Test Directory Contents +=========================== + +Compile and Run Batch Files +--------------------------- + +| c02.bat | Compile .c02 file into .asm file | +| a02.bat | Assemble .asm file into .bin file | +| a1.bat | Compile/Assemble .c02 file to .asc Monitor Format | +| a2.bat | Compile/Assemble .c02 file to .dsk and run AppleWin | +| c64.bat | Compile/Assemble .c02 file to .prg and run x64 | +| o1.bat | Compile/Assemble .c02 file to .tap for Oricutron | +| orao.bat | Compile/Assemble .c02 file to .wav for Orao Emulator | +| p65.bat | Compile/Assemble .c02 file to .bin for py65m | +| v8k.bat | Compile/Assemble .c02 file to .prg and run xvic | +| x16.bat | Compile/Assemble .c02 file to .prg and run x16emu | + +C02 Test/Demo Programs +---------------------- + +| hello.c02 | Print "HELLO WORLD" using prtstr() | +| echo.c02 | Echo typed characters to screen | +| echohex.c02 | Display Hex Codes for types characters | +| conds.c02 | Test Conditional operators | +| loops.c02 | Test Loop and Conditional keywords | +| scrntst.c02 | Test module screen.h02 functions | +| sdeftest.c02 | Test module stddef.h02 functions |