├── .gitignore ├── README.jpg ├── README.md ├── README2.jpg ├── Suite_manual.md ├── bars1.bmp ├── bars1.dat ├── bars2.bmp ├── bars2.dat ├── blue.asm ├── circle.bmp ├── circle.dat ├── circles.bmp ├── circles.dat ├── circles0.bin ├── controller.bmp ├── controller.dat ├── crc32.asm ├── digits.bmp ├── digits.dat ├── donna.bmp ├── donna.dat ├── donna0.bin ├── donna1.bin ├── donna2.bin ├── donna2.bmp ├── donnam2.bin ├── e.bat ├── fm.asm ├── hardware.asm ├── images.bat ├── lag-per.bmp ├── lag-per.dat ├── license.txt ├── mame.asm ├── mdfourier.asm ├── monoscope.bmp ├── monoscope.dat ├── monoscope0.bin ├── monoscope1.bin ├── monoscope2.bmp ├── monoscopem2.bin ├── nanochess.dat ├── patterns.asm ├── pletter.c ├── scc.asm ├── sha1.asm ├── sharpness.bmp ├── sharpness.dat ├── sharpness0.bin ├── sharpness1.bin ├── smpte.bmp ├── smptem2.bin ├── striped.bmp ├── striped.dat ├── suite.asm ├── suitecv.rom ├── suitemsx.rom ├── suitesg.rom ├── title.bmp ├── title.dat ├── title0.bin ├── title1.bin ├── title2.bin ├── title2.bmp ├── titlem2.bin ├── tmscolor.c ├── vdp_colors.bmp └── video.asm /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.obj 3 | .DS_Store 4 | 5 | -------------------------------------------------------------------------------- /README.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/README.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/README.md -------------------------------------------------------------------------------- /README2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/README2.jpg -------------------------------------------------------------------------------- /Suite_manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/Suite_manual.md -------------------------------------------------------------------------------- /bars1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/bars1.bmp -------------------------------------------------------------------------------- /bars1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/bars1.dat -------------------------------------------------------------------------------- /bars2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/bars2.bmp -------------------------------------------------------------------------------- /bars2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/bars2.dat -------------------------------------------------------------------------------- /blue.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/blue.asm -------------------------------------------------------------------------------- /circle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/circle.bmp -------------------------------------------------------------------------------- /circle.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/circle.dat -------------------------------------------------------------------------------- /circles.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/circles.bmp -------------------------------------------------------------------------------- /circles.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/circles.dat -------------------------------------------------------------------------------- /circles0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/circles0.bin -------------------------------------------------------------------------------- /controller.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/controller.bmp -------------------------------------------------------------------------------- /controller.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/controller.dat -------------------------------------------------------------------------------- /crc32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/crc32.asm -------------------------------------------------------------------------------- /digits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/digits.bmp -------------------------------------------------------------------------------- /digits.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/digits.dat -------------------------------------------------------------------------------- /donna.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/donna.bmp -------------------------------------------------------------------------------- /donna.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/donna.dat -------------------------------------------------------------------------------- /donna0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/donna0.bin -------------------------------------------------------------------------------- /donna1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/donna1.bin -------------------------------------------------------------------------------- /donna2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/donna2.bin -------------------------------------------------------------------------------- /donna2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/donna2.bmp -------------------------------------------------------------------------------- /donnam2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/donnam2.bin -------------------------------------------------------------------------------- /e.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/e.bat -------------------------------------------------------------------------------- /fm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/fm.asm -------------------------------------------------------------------------------- /hardware.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/hardware.asm -------------------------------------------------------------------------------- /images.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/images.bat -------------------------------------------------------------------------------- /lag-per.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/lag-per.bmp -------------------------------------------------------------------------------- /lag-per.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/lag-per.dat -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/license.txt -------------------------------------------------------------------------------- /mame.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/mame.asm -------------------------------------------------------------------------------- /mdfourier.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/mdfourier.asm -------------------------------------------------------------------------------- /monoscope.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/monoscope.bmp -------------------------------------------------------------------------------- /monoscope.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/monoscope.dat -------------------------------------------------------------------------------- /monoscope0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/monoscope0.bin -------------------------------------------------------------------------------- /monoscope1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/monoscope1.bin -------------------------------------------------------------------------------- /monoscope2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/monoscope2.bmp -------------------------------------------------------------------------------- /monoscopem2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/monoscopem2.bin -------------------------------------------------------------------------------- /nanochess.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/nanochess.dat -------------------------------------------------------------------------------- /patterns.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/patterns.asm -------------------------------------------------------------------------------- /pletter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/pletter.c -------------------------------------------------------------------------------- /scc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/scc.asm -------------------------------------------------------------------------------- /sha1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/sha1.asm -------------------------------------------------------------------------------- /sharpness.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/sharpness.bmp -------------------------------------------------------------------------------- /sharpness.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/sharpness.dat -------------------------------------------------------------------------------- /sharpness0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/sharpness0.bin -------------------------------------------------------------------------------- /sharpness1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/sharpness1.bin -------------------------------------------------------------------------------- /smpte.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/smpte.bmp -------------------------------------------------------------------------------- /smptem2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/smptem2.bin -------------------------------------------------------------------------------- /striped.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/striped.bmp -------------------------------------------------------------------------------- /striped.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/striped.dat -------------------------------------------------------------------------------- /suite.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/suite.asm -------------------------------------------------------------------------------- /suitecv.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/suitecv.rom -------------------------------------------------------------------------------- /suitemsx.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/suitemsx.rom -------------------------------------------------------------------------------- /suitesg.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/suitesg.rom -------------------------------------------------------------------------------- /title.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/title.bmp -------------------------------------------------------------------------------- /title.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/title.dat -------------------------------------------------------------------------------- /title0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/title0.bin -------------------------------------------------------------------------------- /title1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/title1.bin -------------------------------------------------------------------------------- /title2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/title2.bin -------------------------------------------------------------------------------- /title2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/title2.bmp -------------------------------------------------------------------------------- /titlem2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/titlem2.bin -------------------------------------------------------------------------------- /tmscolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/tmscolor.c -------------------------------------------------------------------------------- /vdp_colors.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/vdp_colors.bmp -------------------------------------------------------------------------------- /video.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanochess/240pTestSuite_colecovision/HEAD/video.asm --------------------------------------------------------------------------------