Testbench: Difference between revisions
mNo edit summary |
m (→last checked) |
||
(150 intermediate revisions by the same user not shown) | |||
Line 10: | Line 10: | ||
... and additionally support for the following emulators: | ... and additionally support for the following emulators: | ||
* [http://www.hoxs64.net/ hoxs64] (C-64) | * [http://www.hoxs64.net/ hoxs64] ([https://github.com/davidhorrocks/hoxs64 github]) (C-64) | ||
* [http://micro64.de/ micro64] (C-64) | * [http://micro64.de/ micro64] (C-64) | ||
* [http://www.z64k.com/ z64k] (C-64, C-128, VIC20) z64k, z128k, z20k (WIP, also has its own GUI to run the tests!) | * [http://www.z64k.com/ z64k] (C-64, C-128, VIC20) z64k, z128k, z20k (WIP, also has its own GUI to run the tests!) | ||
* [http://www.yace64.com/ yace] (C-64) (WIP) | * [http://www.yace64.com/ yace] (C-64) (WIP) | ||
* [http://emu64.de/ emu64] ([https://github.com/ThKattanek/emu64/releases github]) (C-64) (WIP) | |||
* [https://sourceforge.net/projects/deniseemu/ denise] (c64) | |||
* [https://github.com/abbruzze/kernal64 Kernal64] (C-64, C-128, SCPU) (WIP) | |||
* [https://github.com/cebix/frodo4/tree/main Frodo] (C64) (WIP) | |||
* [https://github.com/dirkwhoffmann/virtualc64/ VirtualC64] (very WIP) | |||
need to ask authors of: MESS (C-64, VIC20, PET), Pfau Zeh (VIC20), YAPE (Plus4), jsidplay2 (C64 | : need to ask authors of: MESS (C-64, VIC20, PET), Pfau Zeh (VIC20), YAPE (Plus4), jsidplay2 (C64) | ||
... and the following FPGA based reimplementations: | ... and the following FPGA based reimplementations: | ||
Line 24: | Line 28: | ||
* [https://ultimate64.com/ U64] (C-64) WIP | * [https://ultimate64.com/ U64] (C-64) WIP | ||
need to ask authors of: FPGArcade | : need to ask authors of: FPGArcade, MiST, MiSTer | ||
Support for the testbench can be added to any target implementing the [[Debugcart]] primary features. | |||
'''If you are an emulator author or have written test programs please get in touch!''' | '''If you are an emulator author or have written test programs please get in touch!''' | ||
Line 33: | Line 39: | ||
* [https://github.com/drfiemost/resid-test/ resid-test] by Leandro Nini compares reSID and reSIDfp to the results of perfect6581 | * [https://github.com/drfiemost/resid-test/ resid-test] by Leandro Nini compares reSID and reSIDfp to the results of perfect6581 | ||
* [https://github.com/dirkwhoffmann/virtualC64TS VirtualC64 Testsuite] | |||
== interpreting the results == | |||
Some tests may give surprising results, in the sense that they fail although there technically is no emulation error: | |||
* There are a bunch of tests that check "power up" properties, ie they rely on how the RAM is initialized, how I/O is initialized etc - meaning some may fail randomly when run in the testbench without powercycling (and not much can be done about that). However, quite some of these also indicate actual problems with how prg files are started. eg CIA and VIC should always be initialized with power-up values (note that simply resetting will not do this) since a surprising number of programs rely on this and that. (eg vsid/environment, C64/autostart/defaults, CIA/tod/powerup.prg). Some of the mentioned tests might even fail if not run right after a powercycle (eg C64/raminitpattern, SID/oscinit) | |||
* [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/VICII/spritefetchbug/test-136-2a.prg?format=raw ../VICII/spritefetchbug] | |||
: Losing multicolor in the bleed area does not happen on all C64s. (see the [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/VICII/spritefetchbug/readme.txt?format=raw readme]). If you have a C64 that gives a different result than the references... a videocapture of that would be highly appreciated. | |||
same for a bunch of other VICII tests, not all subtle differences are covered yet. | |||
* [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/CPU/ane/ ../CPU/ane] and [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/CPU/lax/ ../CPU/lax] | |||
: See the readme of the respective test. The ANE#imm and LAX#imm tests will not only check if the opcode behaves correctly, but also if the "magic constant" matches what certain realworld programs expect. Right now that means: for ANE#imm the constant should be 0xef in regular cycles, 0xee in RDY cycle. (and yes, the test will fail on some real C64s). For example with the common 0xee as magic constant, the game "spectipede" will not load from original .tap file. Yes, it will do the same on real C64s. Anyway, for emulation there is no reason why we shouldn't use the magic constant that works for most real programs. For LAX#imm the constant should be always 0xee - since (surprisingly) the game "wizball" relies in this. | |||
== interpreting the ranking == | |||
Keep in mind that the ranking below only gives a rough idea of which emulator is "better" than another, because of different reasons: | |||
* Different emulators have different features. For example VICE emulates a wide range of configurations (different SID and VICII chips, lots of expansions and cartridges), while other emulators - like HOXS64 - emulate only one specific configuration. As a consequence a different number of tests will be used for different emulators, which skews the numbers. | |||
* Generally the test coverage is higher for certain very specific details than for very generic things. As a consequence when an emulator gets all basic stuff right, but fails at one or two of those specific details, seemingly lots of tests will fail and again the numbers are skewed. | |||
* The testbench rates every test equally, it has no "knowledge" about how critical certain failures are. Some tests apply only to obscure cornercases and do not really matter for questions like "will it play game XYZ?". This again may skew the numbers. | |||
However, a "perfect" emulator should get most of the tests right, obscure or not :) | |||
== Bugs / TODOs == | |||
=== missing references === | |||
for a lot of VIC-II tests reference screenshots are needed | |||
../VICII/vicii_timing/vicii_reg_timing.prg | |||
../VICII/videomode the results are a bit questionable, we need to check the references | |||
=== NTSC fixing === | |||
a lot of tests require cycle exact timing and, since they were originall written for a PAL machine, will not work on NTSC yet | |||
../general/Lorenz-2.15/src trap16.prg | |||
../general/Lorenz-2.15/src trap17.prg | |||
../CPU/sha shaabsy2.prg | |||
../CPU/sha shaabsy3.prg | |||
../CPU/sha shazpy2.prg | |||
../CPU/sha shazpy3.prg | |||
../CPU/shs shsabsy2.prg | |||
../CPU/shs shsabsy3.prg | |||
../CPU/shxy shx-t2.prg | |||
../CPU/shxy shx-test.prg | |||
../CPU/shxy shxy2.prg | |||
../CPU/shxy shyx2.prg | |||
../interrupts/irq-ackn-bug/ | |||
../interrupts/irqdma/ | |||
../VICII/split-tests/modesplit modesplit.prg - check screenshots | |||
../VICII/videomode videomode1_ntsc.prg - check screenshots | |||
../VICII/banking/ | |||
../VICII/border | |||
../VICII/lp-trigger/ | |||
../VICII/spritey/ | |||
../VICII/dentest/ various tests broken on ntsc | |||
../VICII/spritesplit/ | |||
../VICII/spriteenable3/4/5 theres is a stray pixel in the output in NTSC mode (?) check against | |||
real NTSC machine | |||
=== automatic variants === | |||
often for tests that are interactive, we can also build a couple variants with various settings that then can be used for automatic testing | |||
../VICII/border/ vborder_ntsc.prg | |||
../VICII/border/ vborder2_ntsc.prg | |||
../VICII/border/ vborder_ntscold.prg | |||
../VICII/border/ vborder2_ntscold.prg | |||
=== misc === | |||
../drive/writeprotect/ write.d64 the test should not be able to write to the disk (and kill the dir track) | |||
maybe can run automatically if we add an option to mount d64 ro | |||
../VICII/vspbug/ lft-safe-vsp.prg this is not really a test program. replace by a real test perhaps | |||
../CPU/64doc/ sbx.prg runs too long to work with a 32bit timeout | |||
../CPU/64doc/ vsbx.prg runs too long to work with a 32bit timeout | |||
../plus256k/ test.prg fails because of broken autostart | |||
../C64/bankio bankio.prg fails on x128, check if it also happens on real C128 and perhaps adjust the test | |||
Lorenz-2.15/src/ciat2anew.prg properly fix for new CIA, currently a few tests are skipped on new CIA | |||
Lorenz-2.15/src/ciat2bnew.prg | |||
=== Targets === | |||
== last checked == | |||
the date indicated here indicates the last time it was checked for the respective emulator if a new version exists AND if so, a testrun was performed. | |||
note that when new tests have been added, it will normally not be run again for all emulators. | |||
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0" | |||
! | | |||
! | version | |||
! | date | |||
! | note | |||
|- | |||
||denise || git 28/11/2024 || 28.11.2024 | |||
|- | |||
||hoxs64 || 1.1.2.6 (June 11th, 2023)|| 28.11.2024 || <s>Has a problem with running extra .prg files when a cartridge is mounted, reported [https://github.com/davidhorrocks/hoxs64/issues/7 here].</s> (fixed) | |||
|- | |||
||emu64 || git 2024/11/27 || 27.11.2024 || a bunch of drive tests fail with timeout. Strange problem related to autostarting programs reported [https://github.com/ThKattanek/emu64/issues/252 here] | |||
|- | |||
||frodo || git 2024/11/25 || 25.11.2024 | |||
|- | |||
||kernal64 (c64) || 1.8.5b1 (Sep 3rd, 2023) || 27.11.2024 || <s>Strange issues with the return code of some tests, reported [https://github.com/abbruzze/kernal64/issues/25 here].</s> (fixed) | |||
|- | |||
||kernal64 (c128/c64) || 1.8.5b1 (Sep 3rd, 2023) || 27.11.2024 | |||
|- | |||
||kernal64 (c128) || 1.8.5b1 (Sep 3rd, 2023) || 27.11.2024 | |||
|- | |||
||kernal64 (scpu64) || 1.8.5b1 (Sep 3rd, 2023) || 27.11.2024 | |||
|- | |||
||kernal64 (cbm2) || 1.8.5b1 (Sep 3rd, 2023) || 27.11.2024 | |||
|- | |||
||z64k (c64) || 30 November 2024 || 30.11.2024 || <s>occasional hang at shutdown, [https://z64k.freeforums.net/thread/3/occasional-hang-when-shutting reported here]</s> (seems fixed) | |||
|- | |||
||z64k (c128/c64) || 30 November 2024 || 30.11.2024 | |||
|- | |||
||z64k (vic20) || 30 November 2024 || 30.11.2024 | |||
|- | |||
||z64k (c128) || 30 November 2024 || 30.11.2024 | |||
|- | |||
||micro64 || 16/03/2018 (build 719) || 20.11.2023 || development seems stalled, a bunch of drive tests fail with timeout | |||
|- | |||
||yace || 2.2.0.47 || || development seems stalled, does not work for me in wine nor windows10 | |||
|- | |||
||TC64 (cartridge) || 9q (16/12/2021) || 21.11.2023 | |||
|- | |||
||TC64 (standalone) || 9q (16/12/2021) || 21.11.2023 | |||
|- | |||
||cham20 || 20201130 || 21.11.2023 || development seems stalled | |||
|- | |||
||U64 || 1.42 || 25.11.2023 || lacks a bunch of features, [https://github.com/GideonZ/1541ultimate/issues/265 reported here] network is a bit unstable. sometimes a test fails randomly because of network problems. every so often the U64 "application" hangs completely and requires to restart the testbench. Mounting cartridges via network seems unstable. Need to manually test/merge PAL/NTSC and REU etc. | |||
|- | |||
||x64sc || 3.8 r45384 || 4.12.2024 | |||
|- | |||
||x64 || 3.8 r45384 || 4.12.2024 | |||
|- | |||
||x128 (c64) || 3.8 r45384 || 4.12.2024 | |||
|- | |||
||xvic || 3.8 r45384 || 4.12.2024 | |||
|- | |||
||x128 || 3.8 r45384 || 4.12.2024 | |||
|- | |||
||xplus4 || 3.8 r45384 || 4.12.2024 | |||
|- | |||
||xpet || 3.8 r45384 || 4.12.2024 | |||
|- | |||
||x64dtv || 3.8 r45384 || 4.12.2024 | |||
|- | |||
||xscpu64 || 3.8 r45384 || 4.12.2024 | |||
|- | |||
||xcbm5x0 || 3.8 r45384 || 4.12.2024 | |||
|- | |||
||xcbm2 || 3.8 r45384 || 4.12.2024 | |||
|- | |||
||vsid || 3.8 r45384 || 4.12.2024 | |||
|} | |||
== Results == | == Results == | ||
=== C64 === | |||
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0" | |||
! | | |||
! | tested | |||
! | passed | |||
! | percent | |||
! | | |||
|- | |||
||denise git 28.11.2024 | |||
||1305 | |||
||1278 | |||
||97% | |||
||{{Progress|97|1278|1305|}} | |||
|- | |||
||x64sc r45384 | |||
||1311 | |||
||1234 | |||
||94% | |||
||{{Progress|94|1234|1311|}} | |||
|- | |||
||z64k (c64) 30 November 2024 | |||
||1212 | |||
||1131 | |||
||93% | |||
||{{Progress|93|1131|1212|}} | |||
|- | |||
||hoxs64 1.1.2.6 | |||
||993 | |||
||901 | |||
||90% | |||
||{{Progress|90|901|993|}} | |||
|- | |||
||TC64 9q (cartridge) | |||
||985 | |||
||887 | |||
||90% | |||
||{{Progress|90|887|985|}} | |||
|- | |||
||z64k (c128/c64) 30 November 2024 | |||
||1212 | |||
||1081 | |||
||89% | |||
||{{Progress|89|1081|1212|}} | |||
|- | |||
||x64 r45384 | |||
||1311 | |||
||1107 | |||
||84% | |||
||{{Progress|84|1107|1311|}} | |||
|- | |||
||x128 (c64) r45384 | |||
||1266 | |||
||1071 | |||
||84% | |||
||{{Progress|84|1071|1266|}} | |||
|- | |||
||kernal64 (c64) 1.8.5_b1 | |||
||1215 | |||
||936 | |||
||77% | |||
||{{Progress|77|936|1215|}} | |||
|- | |||
||frodo 20241125 | |||
||1079 | |||
||840 | |||
||77% | |||
||{{Progress|77|840|1079|}} | |||
|- | |||
||kernal64 (c128/c64) 1.8.5_b1 | |||
||1215 | |||
||933 | |||
||76% | |||
||{{Progress|76|933|1215|}} | |||
|- | |||
||micro64 1.00.2018.03.16 (build 719) | |||
||1062 | |||
||808 | |||
||76% | |||
||{{Progress|76|808|1062|}} | |||
|- | |||
||U64 1.43 | |||
||1012 | |||
||775 | |||
||76% | |||
||{{Progress|76|775|1012|}} | |||
|- | |||
||TC64 9q (standalone) | |||
||1182 | |||
||868 | |||
||73% | |||
||{{Progress|73|868|1182|}} | |||
|- | |||
||yace 2-2-0-47 | |||
||860 | |||
||430 | |||
||50% | |||
||{{Progress|50|430|860|}} | |||
|- | |||
||emu64 20241127 | |||
||1142 | |||
||499 | |||
||43% | |||
||{{Progress|43|499|1142|}} | |||
|- | |||
|} | |||
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0" | {| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0" | ||
! |Path | ! |Path | ||
! |Chip | ! |Chip | ||
! |Type | ! |Type | ||
! width="80pt" | | ! width="80pt" |denise git 28.11.2024 | ||
! width="80pt" |x64sc | ! width="80pt" |x64sc r45384 | ||
! width="80pt" |x128 (c64) | ! width="80pt" |hoxs64 1.1.2.6 | ||
! width="80pt" | | ! width="80pt" |z64k (c64) 30 November 2024 | ||
! width="80pt" | | ! width="80pt" |TC64 9q (cartridge) | ||
! width="80pt" | | ! width="80pt" |z64k (c128/c64) 30 November 2024 | ||
! width="80pt" |micro64 | ! width="80pt" |x128 (c64) r45384 | ||
! width="80pt" |TC64 | ! width="80pt" |x64 r45384 | ||
! width="80pt" |U64 1. | ! width="80pt" |kernal64 (c64) 1.8.5_b1 | ||
! width="80pt" |kernal64 (c128/c64) 1.8.5_b1 | |||
! width="80pt" |micro64 1.00.2018.03.16 (build 719) | |||
! width="80pt" |TC64 9q (standalone) | |||
! width="80pt" |U64 1.43 | |||
! width="80pt" |yace 2-2-0-47 | |||
! width="80pt" |emu64 20241127 | |||
! width="80pt" |frodo 20241125 | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/ ./selftest] | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/ ./selftest] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/c64-pass.crt?format=raw c64-pass.crt]) | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 86: | Line 347: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/ ./selftest] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/c64-fail.crt?format=raw c64-fail.crt]) <small>(must always fail)</small> | |||
|| | |||
|| | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/ ./selftest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/c64-pass. | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/ ./selftest] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/c64-pass.crt?format=raw c64-pass.crt]) | ||
|| | || | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 100: | Line 383: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/raminitpattern/ ../C64/raminitpattern] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/raminitpattern/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/ ./selftest] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/c64-fail.crt?format=raw c64-fail.crt]) <small>(must always fail)</small> | ||
|| | |||
||screenshot | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/raminitpattern/ ../C64/raminitpattern] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/raminitpattern/darkstarbbstest.prg?format=raw darkstarbbstest.prg] | |||
|| | || | ||
|| | || | ||
Line 109: | Line 418: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/raminitpattern/ ../C64/raminitpattern] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/raminitpattern/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/raminitpattern/ ../C64/raminitpattern] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/raminitpattern/typicaltest.prg?format=raw typicaltest.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 153: | Line 445: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/basic/ ../C64/autostart/basic] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/basic/basictest.prg?format=raw basictest.prg] | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/basic/ ../C64/autostart/basic] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/basic/basictest.prg?format=raw basictest.prg] | ||
Line 179: | Line 463: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 189: | Line 468: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/basic/ ../C64/autostart/basic] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/basic/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/basic/ ../C64/autostart/basic] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/basic/printpoint.prg?format=raw printpoint.prg] | ||
|| | || | ||
|| | || | ||
Line 205: | Line 483: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/basic/ ../C64/autostart/basic] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/basic/printpoint2.prg?format=raw printpoint2.prg] | ||
|| | || | ||
|| | || | ||
Line 320: | Line 501: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 373: | Line 508: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/defaults/ ../C64/autostart/defaults] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/defaults/test.prg?format=raw test.prg] <small>(load the test using "TEST" as filename)</small> | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/defaults/ ../C64/autostart/defaults] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/defaults/test.prg?format=raw test.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/defaults/test.d64?format=raw test.d64]) <small>(load the test using "TEST" as filename)</small> | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/bankio/ ../C64/bankio] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/bankio/bankio.prg?format=raw bankio.prg] | ||
|| | || | ||
|| | || | ||
Line 401: | Line 564: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/openio/ ../C64/openio] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/openio/gauntlet.prg?format=raw gauntlet.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 414: | Line 580: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 423: | Line 585: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/banking00/ ../general/banking00] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/banking00/banking00.prg?format=raw banking00.prg] | ||
|| | || | ||
|| | || | ||
Line 437: | Line 601: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 451: | Line 608: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/nopz.prg?format=raw nopz.prg] | ||
|| | || | ||
|| | || | ||
Line 463: | Line 621: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 477: | Line 628: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/laxay.prg?format=raw laxay.prg] | ||
|| | || | ||
|| | || | ||
Line 489: | Line 641: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 503: | Line 648: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/alrb.prg?format=raw alrb.prg] | ||
|| | || | ||
|| | || | ||
Line 515: | Line 661: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 529: | Line 668: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/arrb.prg?format=raw arrb.prg] | ||
|| | || | ||
|| | || | ||
Line 541: | Line 681: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 555: | Line 688: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/aneb.prg?format=raw aneb.prg] | ||
|| | || | ||
|| | || | ||
Line 567: | Line 701: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 581: | Line 708: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/shxay.prg?format=raw shxay.prg] | ||
|| | || | ||
|| | || | ||
Line 592: | Line 720: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 608: | Line 728: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/shyax.prg?format=raw shyax.prg] | ||
|| | || | ||
|| | || | ||
Line 619: | Line 741: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 634: | Line 749: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/shsay.prg?format=raw shsay.prg] | ||
|| | || | ||
|| | || | ||
Line 645: | Line 761: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 659: | Line 768: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/lasay.prg?format=raw lasay.prg] | ||
|| | || | ||
|| | || | ||
Line 671: | Line 781: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 685: | Line 788: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap1.prg?format=raw trap1.prg] | ||
|| | || | ||
|| | || | ||
Line 699: | Line 803: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap2.prg?format=raw trap2.prg] | ||
|| | || | ||
|| | || | ||
Line 713: | Line 824: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap3.prg?format=raw trap3.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 726: | Line 840: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 738: | Line 848: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap4.prg?format=raw trap4.prg] | ||
|| | || | ||
|| | || | ||
Line 752: | Line 864: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap5.prg?format=raw trap5.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 765: | Line 880: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 777: | Line 888: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap6.prg?format=raw trap6.prg] | ||
|| | || | ||
|| | || | ||
Line 791: | Line 904: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap7.prg?format=raw trap7.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 804: | Line 920: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 816: | Line 928: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap8.prg?format=raw trap8.prg] | ||
|| | || | ||
|| | || | ||
Line 827: | Line 941: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 841: | Line 948: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap9.prg?format=raw trap9.prg] | ||
|| | || | ||
|| | || | ||
Line 856: | Line 964: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap10.prg?format=raw trap10.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 869: | Line 980: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 881: | Line 988: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap11.prg?format=raw trap11.prg] | ||
|| | || | ||
|| | || | ||
Line 895: | Line 1,004: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap12.prg?format=raw trap12.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 908: | Line 1,020: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 920: | Line 1,028: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap13.prg?format=raw trap13.prg] | ||
|| | || | ||
|| | || | ||
Line 931: | Line 1,041: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 945: | Line 1,048: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap14.prg?format=raw trap14.prg] | ||
|| | || | ||
|| | || | ||
Line 960: | Line 1,064: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap15.prg?format=raw trap15.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 973: | Line 1,080: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 985: | Line 1,088: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap1ane.prg?format=raw trap1ane.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 997: | Line 1,105: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap2ane.prg?format=raw trap2ane.prg] | ||
|| | || | ||
|| | || | ||
Line 1,007: | Line 1,119: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap3ane.prg?format=raw trap3ane.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,023: | Line 1,145: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap4ane.prg?format=raw trap4ane.prg] | ||
|| | || | ||
|| | || | ||
Line 1,033: | Line 1,159: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap5ane.prg?format=raw trap5ane.prg] | ||
|| | || | ||
|| | || | ||
Line 1,046: | Line 1,179: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap6ane.prg?format=raw trap6ane.prg] | ||
|| | || | ||
|| | || | ||
Line 1,059: | Line 1,199: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap7ane.prg?format=raw trap7ane.prg] | ||
|| | || | ||
|| | || | ||
Line 1,072: | Line 1,219: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap8ane.prg?format=raw trap8ane.prg] | ||
|| | || | ||
|| | || | ||
Line 1,085: | Line 1,239: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap9ane.prg?format=raw trap9ane.prg] | ||
|| | || | ||
|| | || | ||
Line 1,097: | Line 1,258: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,102: | Line 1,265: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap10ane.prg?format=raw trap10ane.prg] | ||
|| | || | ||
|| | || | ||
Line 1,110: | Line 1,278: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,115: | Line 1,285: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap11ane.prg?format=raw trap11ane.prg] | ||
|| | || | ||
|| | || | ||
Line 1,124: | Line 1,299: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap12ane.prg?format=raw trap12ane.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,140: | Line 1,325: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap13ane.prg?format=raw trap13ane.prg] | ||
|| | || | ||
|| | || | ||
Line 1,150: | Line 1,339: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,155: | Line 1,345: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |style="background:lightgrey;"|n/a | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap14ane.prg?format=raw trap14ane.prg] | |||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,165: | Line 1,365: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap15ane.prg?format=raw trap15ane.prg] | ||
|| | || | ||
|| | || | ||
Line 1,176: | Line 1,379: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap1lxa.prg?format=raw trap1lxa.prg] | ||
|| | || | ||
|| | || | ||
Line 1,189: | Line 1,399: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap2lxa.prg?format=raw trap2lxa.prg] | ||
|| | || | ||
|| | || | ||
Line 1,202: | Line 1,419: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap3lxa.prg?format=raw trap3lxa.prg] | ||
|| | || | ||
|| | || | ||
Line 1,215: | Line 1,439: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap4lxa.prg?format=raw trap4lxa.prg] | ||
|| | || | ||
|| | || | ||
Line 1,228: | Line 1,459: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap5lxa.prg?format=raw trap5lxa.prg] | ||
|| | || | ||
|| | || | ||
Line 1,240: | Line 1,478: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,245: | Line 1,485: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap6lxa.prg?format=raw trap6lxa.prg] | ||
|| | || | ||
|| | || | ||
Line 1,254: | Line 1,499: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap7lxa.prg?format=raw trap7lxa.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,270: | Line 1,525: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap8lxa.prg?format=raw trap8lxa.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,282: | Line 1,545: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap9lxa.prg?format=raw trap9lxa.prg] | ||
|| | || | ||
|| | || | ||
Line 1,293: | Line 1,559: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap10lxa.prg?format=raw trap10lxa.prg] | ||
|| | || | ||
|| | || | ||
Line 1,306: | Line 1,579: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap11lxa.prg?format=raw trap11lxa.prg] | ||
|| | || | ||
|| | || | ||
Line 1,319: | Line 1,599: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,324: | Line 1,605: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |style="background:lightgrey;"|n/a | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap12lxa.prg?format=raw trap12lxa.prg] | |||
|| | || | ||
|| | || | ||
Line 1,332: | Line 1,619: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap13lxa.prg?format=raw trap13lxa.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,347: | Line 1,645: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap14lxa.prg?format=raw trap14lxa.prg] | ||
|| | || | ||
|| | || | ||
Line 1,358: | Line 1,659: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap15lxa.prg?format=raw trap15lxa.prg] | ||
|| | || | ||
|| | || | ||
Line 1,370: | Line 1,678: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,375: | Line 1,685: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap16.prg?format=raw trap16.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,389: | Line 1,704: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/trap17.prg?format=raw trap17.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,398: | Line 1,720: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/mmu.prg?format=raw mmu.prg] | ||
|| | || | ||
|| | || | ||
Line 1,412: | Line 1,741: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,426: | Line 1,748: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cpuport.prg?format=raw cpuport.prg] | ||
|| | || | ||
|| | || | ||
Line 1,437: | Line 1,760: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cputiming.prg?format=raw cputiming.prg] | ||
|| | || | ||
|| | || | ||
Line 1,454: | Line 1,784: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/irq.prg?format=raw irq.prg] | |||
||6526 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background: | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,480: | Line 1,808: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/nmi.prg?format=raw nmi.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia1tb123.prg?format=raw cia1tb123.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,506: | Line 1,847: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia2tb123.prg?format=raw cia2tb123.prg] | |||
||6526 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,532: | Line 1,870: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia1pb6.prg?format=raw cia1pb6.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,545: | Line 1,886: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia1pb7.prg?format=raw cia1pb7.prg] | |||
||6526 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,568: | Line 1,909: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia2pb6.prg?format=raw cia2pb6.prg] | |||
||6526 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:lightgrey;"|n/a | ||
| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,584: | Line 1,929: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia2pb7.prg?format=raw cia2pb7.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,597: | Line 1,946: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia1tab.prg?format=raw cia1tab.prg] | |||
||6526 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,623: | Line 1,969: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/loadth.prg?format=raw loadth.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,636: | Line 1,986: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cnto2.prg?format=raw cnto2.prg] | |||
||6526 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,660: | Line 2,009: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/icr01.prg?format=raw icr01.prg] | |||
||6526 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:lightgrey;"|n/a | ||
| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,675: | Line 2,028: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/imr.prg?format=raw imr.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,688: | Line 2,049: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/flipos.prg?format=raw flipos.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,699: | Line 2,066: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/oneshot.prg?format=raw oneshot.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,714: | Line 2,086: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cntdef.prg?format=raw cntdef.prg] | |||
||6526 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,740: | Line 2,110: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia1ta.prg?format=raw cia1ta.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,753: | Line 2,126: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia1tb.prg?format=raw cia1tb.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,765: | Line 2,146: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia2ta.prg?format=raw cia2ta.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,778: | Line 2,166: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia2tb.prg?format=raw cia2tb.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,791: | Line 2,186: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/irqnew.prg?format=raw irqnew.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,805: | Line 2,204: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |style="background:lime;"|ok | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | |style="background:lime;"|ok | ||
|| | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/nminew.prg?format=raw nminew.prg] | |||
||8521 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,816: | Line 2,222: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia1tb123.prg?format=raw cia1tb123.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,831: | Line 2,244: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia2tb123.prg?format=raw cia2tb123.prg] | |||
||8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,844: | Line 2,261: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,854: | Line 2,267: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia1pb6.prg?format=raw cia1pb6.prg] | |||
||8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,870: | Line 2,287: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia1pb7.prg?format=raw cia1pb7.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,883: | Line 2,304: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia2pb6.prg?format=raw cia2pb6.prg] | |||
||8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,896: | Line 2,321: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,906: | Line 2,327: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia2pb7.prg?format=raw cia2pb7.prg] | |||
||8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,922: | Line 2,347: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia1tabnew.prg?format=raw cia1tabnew.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,935: | Line 2,364: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/loadth.prg?format=raw loadth.prg] | |||
||8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,948: | Line 2,381: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,958: | Line 2,387: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cnto2.prg?format=raw cnto2.prg] | |||
||8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,974: | Line 2,407: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/icr01new.prg?format=raw icr01new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,987: | Line 2,424: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/imrnew.prg?format=raw imrnew.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,000: | Line 2,444: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/flipos.prg?format=raw flipos.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,013: | Line 2,464: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/oneshot.prg?format=raw oneshot.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,026: | Line 2,484: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cntdef.prg?format=raw cntdef.prg] | |||
||8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,052: | Line 2,507: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia1tanew.prg?format=raw cia1tanew.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,065: | Line 2,524: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia1tbnew.prg?format=raw cia1tbnew.prg] | |||
||8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,078: | Line 2,542: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia2tanew.prg?format=raw cia2tanew.prg] <small>(TODO - incomplete)</small> | |||
||8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,091: | Line 2,560: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,101: | Line 2,566: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cia2tbnew.prg?format=raw cia2tbnew.prg] <small>(TODO - incomplete)</small> | |||
||8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,117: | Line 2,587: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/ram0001/ ../general/ram0001] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/ram0001/test1.prg?format=raw test1.prg] | ||
|| | || | ||
|| | || | ||
Line 2,129: | Line 2,603: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/ ../general/fuxxortest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/test-fuxxored.prg?format=raw test-fuxxored.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/ ../general/fuxxortest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/ef1-nmi.prg?format=raw ef1-nmi.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,143: | Line 2,641: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,154: | Line 2,648: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/ ../general/fuxxortest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/ef2-inst1.prg?format=raw ef2-inst1.prg] | ||
|| | || | ||
|| | || | ||
Line 2,165: | Line 2,660: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,181: | Line 2,668: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/ ../general/fuxxortest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/ef2-inst2.prg?format=raw ef2-inst2.prg] | ||
|| | || | ||
|| | || | ||
Line 2,192: | Line 2,681: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/ ../general/fuxxortest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/ef2-inst3.prg?format=raw ef2-inst3.prg] | ||
|| | || | ||
|| | || | ||
Line 2,205: | Line 2,701: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/ ../general/fuxxortest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/ef2-inst4a.prg?format=raw ef2-inst4a.prg] | ||
|| | || | ||
|| | || | ||
Line 2,216: | Line 2,719: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/ ../general/fuxxortest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/ef2-inst4b.prg?format=raw ef2-inst4b.prg] | ||
|| | || | ||
|| | || | ||
Line 2,231: | Line 2,741: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,245: | Line 2,748: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/ ../general/fuxxortest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest/ef2-inst4c.prg?format=raw ef2-inst4c.prg] | ||
|| | || | ||
|| | || | ||
Line 2,257: | Line 2,761: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/Acid800/ ../CPU/Acid800] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/Acid800/cpu_illegal.prg?format=raw cpu_illegal.prg] | ||
|| | || | ||
|| | || | ||
Line 2,273: | Line 2,784: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/Acid800/ ../CPU/Acid800] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/Acid800/cpu_timing.prg?format=raw cpu_timing.prg] | |||
||PAL | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,299: | Line 2,810: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/Acid800/ ../CPU/Acid800] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/Acid800/cpu_timing_ntsc.prg?format=raw cpu_timing_ntsc.prg] <small>(not 100% stable - rerun on failure)</small> | ||
|| | ||NTSC | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,311: | Line 2,825: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/Acid800/ ../CPU/Acid800] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/Acid800/cpu_bugs.prg?format=raw cpu_bugs.prg] | ||
|| | || | ||
|| | || | ||
Line 2,322: | Line 2,841: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,337: | Line 2,849: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/Acid800/ ../CPU/Acid800] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/Acid800/cpu_clisei.prg?format=raw cpu_clisei.prg] | ||
|| | || | ||
|| | || | ||
Line 2,351: | Line 2,864: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/ane/ ../CPU/ane] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/ane/ane.prg?format=raw ane.prg] | |||
||PAL | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,374: | Line 2,885: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/ane/ ../CPU/ane] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/ane/ane-none.prg?format=raw ane-none.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,390: | Line 2,904: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/ane/ ../CPU/ane] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/ane/ane-border.prg?format=raw ane-border.prg] | |||
||PAL | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,413: | Line 2,925: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/asap/ ../CPU/asap] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/asap/cpu_ane.prg?format=raw cpu_ane.prg] | ||
|| | || | ||
|| | || | ||
Line 2,426: | Line 2,941: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,440: | Line 2,948: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/asap/ ../CPU/asap] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/asap/cpu_decimal.prg?format=raw cpu_decimal.prg] | ||
|| | || | ||
|| | || | ||
Line 2,452: | Line 2,961: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,466: | Line 2,968: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/asap/ ../CPU/asap] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/asap/cpu_shx.prg?format=raw cpu_shx.prg] | ||
|| | || | ||
|| | || | ||
Line 2,476: | Line 2,979: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,491: | Line 2,985: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/cpujam/ ../CPU/cpujam] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/cpujam/cpujamf2.prg?format=raw cpujamf2.prg] <small>(must always timeout)</small> | ||
|| | |||
|| | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:red;"|ok (fail) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/cpujam/ ../CPU/cpujam] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/cpujam/jamirq.prg?format=raw jamirq.prg] <small>(must always timeout)</small> | |||
|| | |||
|| | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|timeout (ok) | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/cpujam/ ../CPU/cpujam] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/cpujam/jamnmi.prg?format=raw jamnmi.prg] <small>(must always timeout)</small> | |||
|| | |||
|| | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|timeout (ok) | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/cpuport/ ../CPU/cpuport] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/cpuport/test1.prg?format=raw test1.prg] | |||
|| | || | ||
|| | || | ||
Line 2,503: | Line 3,060: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background: | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/cpuport/ ../CPU/cpuport] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/cpuport/initvalue.crt?format=raw initvalue.crt]) | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,532: | Line 3,084: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/ ../CPU/decimalmode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/scanner.prg?format=raw scanner.prg] | ||
|| | || | ||
|| | || | ||
Line 2,543: | Line 3,101: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,557: | Line 3,108: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/ ../CPU/decimalmode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/arr00.prg?format=raw arr00.prg] | ||
|| | || | ||
|| | || | ||
Line 2,569: | Line 3,121: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,583: | Line 3,128: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/ ../CPU/decimalmode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/arr01.prg?format=raw arr01.prg] | ||
|| | || | ||
|| | || | ||
Line 2,595: | Line 3,141: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,609: | Line 3,148: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/ ../CPU/decimalmode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/arr02.prg?format=raw arr02.prg] | ||
|| | || | ||
|| | || | ||
Line 2,621: | Line 3,161: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,635: | Line 3,168: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/ ../CPU/decimalmode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/arr10.prg?format=raw arr10.prg] | ||
|| | || | ||
|| | || | ||
Line 2,647: | Line 3,181: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,661: | Line 3,188: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/ ../CPU/decimalmode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/arr11.prg?format=raw arr11.prg] | ||
|| | || | ||
|| | || | ||
Line 2,673: | Line 3,201: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,687: | Line 3,208: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/ ../CPU/decimalmode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/arr12.prg?format=raw arr12.prg] | ||
|| | || | ||
|| | || | ||
Line 2,699: | Line 3,221: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,713: | Line 3,228: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/lax/ ../CPU/lax] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/lax/lax.prg?format=raw lax.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,728: | Line 3,244: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/lax/ ../CPU/lax] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/lax/lax-none.prg?format=raw lax-none.prg] | |||
||PAL | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,741: | Line 3,260: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,753: | Line 3,268: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/lax/ ../CPU/lax] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/lax/lax-border.prg?format=raw lax-border.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,767: | Line 3,284: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/ ../CPU/sha] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/shaabsy1.prg?format=raw shaabsy1.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,780: | Line 3,300: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,792: | Line 3,308: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/ ../CPU/sha] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/shaabsy2.prg?format=raw shaabsy2.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,801: | Line 3,319: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,806: | Line 3,328: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/ ../CPU/sha] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/shaabsy3.prg?format=raw shaabsy3.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,815: | Line 3,340: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/ ../CPU/sha] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/shaabsy4.prg?format=raw shaabsy4.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,828: | Line 3,360: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/ ../CPU/sha] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/shaabsy5.prg?format=raw shaabsy5.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,842: | Line 3,381: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/ ../CPU/sha] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/shazpy1.prg?format=raw shazpy1.prg] | ||
|| | || | ||
|| | || | ||
Line 2,857: | Line 3,403: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/ ../CPU/sha] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/shazpy2.prg?format=raw shazpy2.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,866: | Line 3,419: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,871: | Line 3,428: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/ ../CPU/sha] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/shazpy3.prg?format=raw shazpy3.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,880: | Line 3,440: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/ ../CPU/sha] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/shazpy4.prg?format=raw shazpy4.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,893: | Line 3,460: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/ ../CPU/sha] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/sha/shazpy5.prg?format=raw shazpy5.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,907: | Line 3,481: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shs/ ../CPU/shs] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shs/shsabsy1.prg?format=raw shsabsy1.prg] | ||
|| | || | ||
|| | || | ||
Line 2,922: | Line 3,503: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shs/ ../CPU/shs] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shs/shsabsy2.prg?format=raw shsabsy2.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,931: | Line 3,519: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,936: | Line 3,528: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shs/ ../CPU/shs] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shs/shsabsy3.prg?format=raw shsabsy3.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,945: | Line 3,540: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shs/ ../CPU/shs] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shs/shsabsy4.prg?format=raw shsabsy4.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,958: | Line 3,560: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shs/ ../CPU/shs] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shs/shsabsy5.prg?format=raw shsabsy5.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,972: | Line 3,581: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/ ../CPU/shxy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/shx-test.prg?format=raw shx-test.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,984: | Line 3,600: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |style="background:red;"|fail | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/ ../CPU/shxy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/shxy1.prg?format=raw shxy1.prg] | |||
|| | || | ||
|| | || | ||
Line 3,001: | Line 3,624: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/ ../CPU/shxy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/shxy2.prg?format=raw shxy2.prg] | |||
||PAL | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,026: | Line 3,648: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/ ../CPU/shxy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/shxy3.prg?format=raw shxy3.prg] | ||
|| | || | ||
|| | || | ||
Line 3,037: | Line 3,661: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/ ../CPU/shxy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/shxy4.prg?format=raw shxy4.prg] | ||
|| | || | ||
|| | || | ||
Line 3,050: | Line 3,681: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/ ../CPU/shxy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/shxy5.prg?format=raw shxy5.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,063: | Line 3,701: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/ ../CPU/shxy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/shyx1.prg?format=raw shyx1.prg] | ||
|| | || | ||
|| | || | ||
Line 3,079: | Line 3,724: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/ ../CPU/shxy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/shyx2.prg?format=raw shyx2.prg] | |||
||PAL | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,104: | Line 3,748: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/ ../CPU/shxy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/shyx3.prg?format=raw shyx3.prg] | ||
|| | || | ||
|| | || | ||
Line 3,115: | Line 3,761: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/ ../CPU/shxy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/shyx4.prg?format=raw shyx4.prg] | ||
|| | || | ||
|| | || | ||
Line 3,128: | Line 3,781: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/ ../CPU/shxy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/shxy/shyx5.prg?format=raw shyx5.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,141: | Line 3,801: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/jsrselfmod/ ../CPU/jsrselfmod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/jsrselfmod/jsr.prg?format=raw jsr.prg] | ||
|| | || | ||
|| | || | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,153: | Line 3,821: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/branchquirk/ ../interrupts/branchquirk] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/branchquirk/branchquirk-new.prg?format=raw branchquirk-new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,182: | Line 3,843: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/branchquirk/ ../interrupts/branchquirk] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/branchquirk/branchquirk-old.prg?format=raw branchquirk-old.prg] | |||
||6526 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,208: | Line 3,869: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/branchquirk/ ../interrupts/branchquirk] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/branchquirk/branchquirk-nminew.prg?format=raw branchquirk-nminew.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,222: | Line 3,884: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/branchquirk/ ../interrupts/branchquirk] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/branchquirk/branchquirk-nmiold.prg?format=raw branchquirk-nmiold.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,235: | Line 3,909: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/cia-int/ ../interrupts/cia-int] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/cia-int/cia-int-irq-new.prg?format=raw cia-int-irq-new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,246: | Line 3,922: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/cia-int/ ../interrupts/cia-int] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/cia-int/cia-int-irq.prg?format=raw cia-int-irq.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/cia-int/ ../interrupts/cia-int] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/cia-int/cia-int-nmi-new.prg?format=raw cia-int-nmi-new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,273: | Line 3,962: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/cia-int/ ../interrupts/cia-int] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/cia-int/cia-int-nmi.prg?format=raw cia-int-nmi.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lightblue;"|timeout | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irq-ackn-bug/ ../interrupts/irq-ackn-bug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irq-ackn-bug/cia1new.prg?format=raw cia1new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,299: | Line 4,002: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irq-ackn-bug/ ../interrupts/irq-ackn-bug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irq-ackn-bug/cia1.prg?format=raw cia1.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irq-ackn-bug/ ../interrupts/irq-ackn-bug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irq-ackn-bug/cia2new.prg?format=raw cia2new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,325: | Line 4,042: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irq-ackn-bug/ ../interrupts/irq-ackn-bug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irq-ackn-bug/cia2.prg?format=raw cia2.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irq-ackn-bug/ ../interrupts/irq-ackn-bug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irq-ackn-bug/irq-ack-vicii.prg?format=raw irq-ack-vicii.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lightblue;"|timeout | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/nmitest6b.prg?format=raw nmitest6b.prg] | ||
|| | ||PAL 6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/nmitest6b.prg?format=raw nmitest6b.prg] | ||
|| | ||PAL 8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/nmitest6.prg?format=raw nmitest6.prg] | ||
|| | ||PAL 6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/nmitest6.prg?format=raw nmitest6.prg] | ||
|| | ||PAL 8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test1b.prg?format=raw test1b.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test1.prg?format=raw test1.prg] | ||
||PAL | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test2b.prg?format=raw test2b.prg] | ||
||PAL | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test2.prg?format=raw test2.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,479: | Line 4,241: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test3b.prg?format=raw test3b.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,492: | Line 4,261: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test3.prg?format=raw test3.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,505: | Line 4,281: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test4b.prg?format=raw test4b.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test4.prg?format=raw test4.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,531: | Line 4,321: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test5b.prg?format=raw test5b.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test5.prg?format=raw test5.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test6b.prg?format=raw test6b.prg] | ||
||6526 | ||PAL 6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test6b.prg?format=raw test6b.prg] | |||
||PAL 8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test6.prg?format=raw test6.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test7b.prg?format=raw test7b.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test7.prg?format=raw test7.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnmi/ ../interrupts/irqnmi] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnmi/irqnmi-new.prg?format=raw irqnmi-new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,625: | Line 4,483: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnmi/ ../interrupts/irqnmi] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnmi/irqnmi-old.prg?format=raw irqnmi-old.prg] | ||
||6526 | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnoack/ ../interrupts/irqnoack] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnoack/ackcia.prg?format=raw ackcia.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,649: | Line 4,523: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnoack/ ../interrupts/irqnoack] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnoack/ackcia2.prg?format=raw ackcia2.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,662: | Line 4,543: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnoack/ ../interrupts/irqnoack] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnoack/ackcia3.prg?format=raw ackcia3.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,675: | Line 4,563: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnoack/ ../interrupts/irqnoack] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnoack/ackraster.prg?format=raw ackraster.prg] <small>(must always timeout)</small> | ||
|| | || | ||
|| | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|timeout (ok) | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|timeout (ok) | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/CIA-AcountsB/ ../CIA/CIA-AcountsB] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/CIA-AcountsB/cia-b-counts-a.prg?format=raw cia-b-counts-a.prg] | |||
||PAL | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,690: | Line 4,603: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,703: | Line 4,610: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/CIA-AcountsB/ ../CIA/CIA-AcountsB] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/CIA-AcountsB/cmp-b-counts-a-old.prg?format=raw cmp-b-counts-a-old.prg] | ||
||6526 | ||PAL 6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 3,714: | Line 4,623: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/CIA-AcountsB/ ../CIA/CIA-AcountsB] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/CIA-AcountsB/cmp-b-counts-a-new.prg?format=raw cmp-b-counts-a-new.prg] | |||
||PAL 8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,729: | Line 4,640: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/CIA-AcountsB/ ../CIA/CIA-AcountsB] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/CIA-AcountsB/cia-b-counts-a_ntsc.prg?format=raw cia-b-counts-a_ntsc.prg] | ||
|| | ||NTSC | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 3,753: | Line 4,663: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/CIA-AcountsB/ ../CIA/CIA-AcountsB] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/CIA-AcountsB/cmp-b-counts-a-old_ntsc.prg?format=raw cmp-b-counts-a-old_ntsc.prg] | ||
||6526 | ||NTSC 6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 3,766: | Line 4,683: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/CIA-AcountsB/ ../CIA/CIA-AcountsB] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/CIA-AcountsB/cmp-b-counts-a-new_ntsc.prg?format=raw cmp-b-counts-a-new_ntsc.prg] | ||
|| | ||NTSC 8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 3,779: | Line 4,703: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/cia-timer/ ../CIA/cia-timer] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/cia-timer/cia-timer-oldcias.prg?format=raw cia-timer-oldcias.prg] | ||
||6526 | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 3,792: | Line 4,723: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/cia-timer/ ../CIA/cia-timer] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/cia-timer/cia-timer-newcias.prg?format=raw cia-timer-newcias.prg] | ||
||8521 | ||8521 | ||
|| | || | ||
Line 3,804: | Line 4,741: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia3.prg?format=raw cia3.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,818: | Line 4,766: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia3a.prg?format=raw cia3a.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,831: | Line 4,786: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia4.prg?format=raw cia4.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,845: | Line 4,805: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia5.prg?format=raw cia5.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,858: | Line 4,823: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,870: | Line 4,831: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia6.prg?format=raw cia6.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,884: | Line 4,843: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia7.prg?format=raw cia7.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,897: | Line 4,863: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,908: | Line 4,869: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia8.prg?format=raw cia8.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia9.prg?format=raw cia9.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,935: | Line 4,902: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,948: | Line 4,909: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia10.prg?format=raw cia10.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,962: | Line 4,923: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,973: | Line 4,929: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia11.prg?format=raw cia11.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,987: | Line 4,942: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,000: | Line 4,949: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia12.prg?format=raw cia12.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,013: | Line 4,962: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,026: | Line 4,969: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia13.prg?format=raw cia13.prg] | ||
|| | || | ||
|| | || | ||
Line 4,079: | Line 4,983: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,104: | Line 4,989: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia14.prg?format=raw cia14.prg] | ||
|| | || | ||
|| | || | ||
Line 4,116: | Line 5,001: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,131: | Line 5,009: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia15.prg?format=raw cia15.prg] | ||
|| | || | ||
|| | || | ||
Line 4,145: | Line 5,024: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia3new.prg?format=raw cia3new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,171: | Line 5,044: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia3anew.prg?format=raw cia3anew.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,184: | Line 5,064: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia4new.prg?format=raw cia4new.prg] | |||
||8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,210: | Line 5,087: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia8new.prg?format=raw cia8new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,221: | Line 5,102: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/dd0drw/ ../CIA/dd0drw] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/dd0drw/dd0drw.prg?format=raw dd0drw.prg] | ||
|| | || | ||
|| | || | ||
Line 4,236: | Line 5,124: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/dd0dtest/ ../CIA/dd0dtest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/dd0dtest/dd0dtest.prg?format=raw dd0dtest.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:red;"| | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/dd0dtest/ ../CIA/dd0dtest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/dd0dtest/dd0dtest.prg?format=raw dd0dtest.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,274: | Line 5,163: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/ ../CIA/irqdelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/irqdelay.prg?format=raw irqdelay.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,288: | Line 5,186: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/ ../CIA/irqdelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/irqdelay-new.prg?format=raw irqdelay-new.prg] | |||
||8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,301: | Line 5,201: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,311: | Line 5,207: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/ ../CIA/irqdelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/irqdelay-oneshot.prg?format=raw irqdelay-oneshot.prg] | |||
||6526 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:lightgrey;"|n/a | ||
| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,327: | Line 5,229: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/ ../CIA/irqdelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/irqdelay-oneshot-new.prg?format=raw irqdelay-oneshot-new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,340: | Line 5,244: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/ ../CIA/irqdelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/irqdelay2.prg?format=raw irqdelay2.prg] | |||
||6526 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,363: | Line 5,269: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/ ../CIA/irqdelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/irqdelay2-new.prg?format=raw irqdelay2-new.prg] | |||
||8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,379: | Line 5,287: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/ ../CIA/irqdelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/irqdelay-cia1-4-new.prg?format=raw irqdelay-cia1-4-new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,390: | Line 5,302: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/ ../CIA/irqdelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/irqdelay-cia1-4-old.prg?format=raw irqdelay-cia1-4-old.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,405: | Line 5,329: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/ ../CIA/irqdelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/irqdelay-cia1-oneshot-4-new.prg?format=raw irqdelay-cia1-oneshot-4-new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,417: | Line 5,343: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |style="background:lime;"|ok | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | |style="background:lightgrey;"|n/a | ||
|| | |style="background:lightgrey;"|n/a | ||
|| | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/ ../CIA/irqdelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/irqdelay-cia1-oneshot-4-old.prg?format=raw irqdelay-cia1-oneshot-4-old.prg] | |||
||6526 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,431: | Line 5,369: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/ ../CIA/irqdelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/irqdelay-cia2-oneshot-4.prg?format=raw irqdelay-cia2-oneshot-4.prg] | ||
|| | || | ||
|| | || | ||
Line 4,444: | Line 5,384: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/pb6pb7/ ../CIA/pb6pb7] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/pb6pb7/main.prg?format=raw main.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,457: | Line 5,400: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,466: | Line 5,405: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/reload0/ ../CIA/reload0] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/reload0/reload0a.prg?format=raw reload0a.prg] | ||
|| | || | ||
|| | || | ||
Line 4,480: | Line 5,421: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,495: | Line 5,429: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/reload0/ ../CIA/reload0] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/reload0/reload0b.prg?format=raw reload0b.prg] | ||
|| | || | ||
|| | || | ||
Line 4,509: | Line 5,444: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,518: | Line 5,449: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/ ../CIA/shiftregister] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-icr-test-continues-new.prg?format=raw cia-icr-test-continues-new.prg] | |||
||8521 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,535: | Line 5,467: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/ ../CIA/shiftregister] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-icr-test-continues-old.prg?format=raw cia-icr-test-continues-old.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,548: | Line 5,489: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/ ../CIA/shiftregister] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-icr-test-oneshot-new.prg?format=raw cia-icr-test-oneshot-new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,561: | Line 5,504: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/ ../CIA/shiftregister] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-icr-test-oneshot-old.prg?format=raw cia-icr-test-oneshot-old.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,574: | Line 5,529: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/ ../CIA/shiftregister] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-load.prg?format=raw cia-sdr-load.prg] | ||
|| | || | ||
|| | || | ||
Line 4,586: | Line 5,543: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/ ../CIA/shiftregister] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-init.prg?format=raw cia-sdr-init.prg] | ||
|| | || | ||
|| | || | ||
Line 4,599: | Line 5,563: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/ ../CIA/shiftregister] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-delay.prg?format=raw cia-sdr-delay.prg] | ||
|| | || | ||
|| | || | ||
Line 4,612: | Line 5,583: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-0_7f.prg?format=raw cia1-sdr-icr-0_7f.prg] | ||
|| | || | ||
|| | || | ||
Line 4,625: | Line 5,603: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-0.prg?format=raw cia1-sdr-icr-0.prg] | ||
|| | || | ||
|| | || | ||
Line 4,638: | Line 5,623: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-1_7f.prg?format=raw cia1-sdr-icr-1_7f.prg] | ||
|| | || | ||
|| | || | ||
Line 4,651: | Line 5,643: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-19.prg?format=raw cia1-sdr-icr-19.prg] | ||
|| | || | ||
|| | || | ||
Line 4,664: | Line 5,663: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-39.prg?format=raw cia1-sdr-icr-39.prg] | ||
|| | || | ||
|| | || | ||
Line 4,677: | Line 5,683: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-3.prg?format=raw cia1-sdr-icr-3.prg] | ||
|| | || | ||
|| | || | ||
Line 4,690: | Line 5,703: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-4485-0_7f.prg?format=raw cia1-sdr-icr-4485-0_7f.prg] <small>(CIA timestamp 4485 only)</small> | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-4485-0.prg?format=raw cia1-sdr-icr-4485-0.prg] <small>(CIA timestamp 4485 only)</small> | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-4485-1_7f.prg?format=raw cia1-sdr-icr-4485-1_7f.prg] <small>(CIA timestamp 4485 only)</small> | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-4485-19.prg?format=raw cia1-sdr-icr-4485-19.prg] <small>(CIA timestamp 4485 only)</small> | |||
||6526 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:lightgrey;"|n/a | ||
| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-4485-39.prg?format=raw cia1-sdr-icr-4485-39.prg] <small>(CIA timestamp 4485 only)</small> | |||
||6526 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-4485-3.prg?format=raw cia1-sdr-icr-4485-3.prg] <small>(CIA timestamp 4485 only)</small> | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-4485-4_7f.prg?format=raw cia1-sdr-icr-4485-4_7f.prg] <small>(CIA timestamp 4485 only)</small> | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-4_7f.prg?format=raw cia1-sdr-icr-4_7f.prg] | ||
|| | || | ||
|| | || | ||
Line 4,781: | Line 5,863: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-generic-0.prg?format=raw cia1-sdr-icr-generic-0.prg] | ||
|| | || | ||
|| | || | ||
Line 4,794: | Line 5,883: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-generic-0_7f.prg?format=raw cia1-sdr-icr-generic-0_7f.prg] | ||
|| | || | ||
|| | || | ||
Line 4,807: | Line 5,903: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-generic-19.prg?format=raw cia1-sdr-icr-generic-19.prg] | ||
|| | || | ||
|| | || | ||
Line 4,820: | Line 5,923: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-generic-1_7f.prg?format=raw cia1-sdr-icr-generic-1_7f.prg] | ||
|| | || | ||
|| | || | ||
Line 4,833: | Line 5,943: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-generic-3.prg?format=raw cia1-sdr-icr-generic-3.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,846: | Line 5,961: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-generic-39.prg?format=raw cia1-sdr-icr-generic-39.prg] | ||
|| | || | ||
|| | || | ||
Line 4,872: | Line 5,983: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia1-sdr-icr-generic-4_7f.prg?format=raw cia1-sdr-icr-generic-4_7f.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,885: | Line 6,001: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-0_7f.prg?format=raw cia2-sdr-icr-0_7f.prg] | ||
|| | || | ||
|| | || | ||
Line 4,911: | Line 6,023: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-0.prg?format=raw cia2-sdr-icr-0.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,924: | Line 6,041: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-1_7f.prg?format=raw cia2-sdr-icr-1_7f.prg] | ||
|| | || | ||
|| | || | ||
Line 4,950: | Line 6,063: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-19.prg?format=raw cia2-sdr-icr-19.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 4,963: | Line 6,081: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-39.prg?format=raw cia2-sdr-icr-39.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-3.prg?format=raw cia2-sdr-icr-3.prg] | ||
|| | || | ||
|| | || | ||
Line 5,002: | Line 6,123: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-4485-0_7f.prg?format=raw cia2-sdr-icr-4485-0_7f.prg] <small>(CIA timestamp 4485 only)</small> | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-4485-0.prg?format=raw cia2-sdr-icr-4485-0.prg] <small>(CIA timestamp 4485 only)</small> | ||
||6526 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-4485-1_7f.prg?format=raw cia2-sdr-icr-4485-1_7f.prg] <small>(CIA timestamp 4485 only)</small> | ||
||6526 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-4485-19.prg?format=raw cia2-sdr-icr-4485-19.prg] <small>(CIA timestamp 4485 only)</small> | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-4485-39.prg?format=raw cia2-sdr-icr-4485-39.prg] <small>(CIA timestamp 4485 only)</small> | ||
||6526 | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 5,066: | Line 6,223: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-4485-3.prg?format=raw cia2-sdr-icr-4485-3.prg] <small>(CIA timestamp 4485 only)</small> | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-4485-4_7f.prg?format=raw cia2-sdr-icr-4485-4_7f.prg] <small>(CIA timestamp 4485 only)</small> | ||
||6526 | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 5,092: | Line 6,263: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-4_7f.prg?format=raw cia2-sdr-icr-4_7f.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,106: | Line 6,283: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-generic-0.prg?format=raw cia2-sdr-icr-generic-0.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,120: | Line 6,303: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-generic-0_7f.prg?format=raw cia2-sdr-icr-generic-0_7f.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,132: | Line 6,323: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-generic-19.prg?format=raw cia2-sdr-icr-generic-19.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,146: | Line 6,343: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-generic-1_7f.prg?format=raw cia2-sdr-icr-generic-1_7f.prg] | ||
|| | |||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-generic-3.prg?format=raw cia2-sdr-icr-generic-3.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-generic-39.prg?format=raw cia2-sdr-icr-generic-39.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/ ../CIA/shiftregister/cia-sdr-icr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sdr-icr/cia2-sdr-icr-generic-4_7f.prg?format=raw cia2-sdr-icr-generic-4_7f.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/ ../CIA/shiftregister] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sp-test-continues-new.prg?format=raw cia-sp-test-continues-new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/ ../CIA/shiftregister] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sp-test-continues-old.prg?format=raw cia-sp-test-continues-old.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/ ../CIA/shiftregister] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sp-test-oneshot-new.prg?format=raw cia-sp-test-oneshot-new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/ ../CIA/shiftregister] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-sp-test-oneshot-old.prg?format=raw cia-sp-test-oneshot-old.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/timerbasics/ ../CIA/timerbasics] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/timerbasics/test_new.prg?format=raw test_new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/timerbasics/ ../CIA/timerbasics] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/timerbasics/test.prg?format=raw test.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/timerbasics/ ../CIA/timerbasics] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/timerbasics/timer_new.prg?format=raw timer_new.prg] | ||
|| | ||8521 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/timerbasics/ ../CIA/timerbasics] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/timerbasics/timer.prg?format=raw timer.prg] | ||
|| | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,406: | Line 6,590: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/timerbasics/ ../CIA/timerbasics] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/timerbasics/timer_test1_new.prg?format=raw timer_test1_new.prg] | ||
||8521 | ||8521 | ||
|| | || | ||
Line 5,418: | Line 6,603: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/timerbasics/ ../CIA/timerbasics] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/timerbasics/timer_test1.prg?format=raw timer_test1.prg] | ||
||6526 | ||6526 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 5,432: | Line 6,625: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/0alarm.prg?format=raw 0alarm.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,469: | Line 6,642: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/1alarm.prg?format=raw 1alarm.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,495: | Line 6,662: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/4todcia1.prg?format=raw 4todcia1.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/4tod.prg?format=raw 4tod.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/5tod.prg?format=raw 5tod.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,598: | Line 6,725: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/6tod.prg?format=raw 6tod.prg] | ||
|| | || | ||
|| | || | ||
Line 5,614: | Line 6,744: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/alarm-cond2.prg?format=raw alarm-cond2.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/alarm-cond.prg?format=raw alarm-cond.prg] | ||
|| | || | ||
|| | || | ||
Line 5,663: | Line 6,781: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,677: | Line 6,789: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/alarm.prg?format=raw alarm.prg] | ||
|| | || | ||
|| | || | ||
Line 5,691: | Line 6,803: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightblue;"|timeout | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/fix-hour.prg?format=raw fix-hour.prg] | ||
|| | || | ||
|| | || | ||
Line 5,718: | Line 6,824: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/fix-min.prg?format=raw fix-min.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,741: | Line 6,845: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/fix-sec.prg?format=raw fix-sec.prg] | ||
|| | || | ||
|| | || | ||
Line 5,756: | Line 6,863: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/fix-tsec.prg?format=raw fix-tsec.prg] | ||
|| | || | ||
|| | || | ||
Line 5,769: | Line 6,883: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/hammerfist0.prg?format=raw hammerfist0.prg] | ||
|| | || | ||
|| | || | ||
Line 5,783: | Line 6,904: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/hammerfist1.prg?format=raw hammerfist1.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,796: | Line 6,920: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,805: | Line 6,925: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/hour-test.prg?format=raw hour-test.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,821: | Line 6,943: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,831: | Line 6,948: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/hzsync0.prg?format=raw hzsync0.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,847: | Line 6,963: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/hzsync1.prg?format=raw hzsync1.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,858: | Line 6,981: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,911: | Line 6,988: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/hzsync2.prg?format=raw hzsync2.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,926: | Line 7,003: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/hzsync3.prg?format=raw hzsync3.prg] <small>(not 100% stable - rerun on failure)</small> | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,938: | Line 7,023: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/hzsync4.prg?format=raw hzsync4.prg] | |||
||PAL | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,964: | Line 7,045: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/hzsync5.prg?format=raw hzsync5.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 5,978: | Line 7,064: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/hzsync6.prg?format=raw hzsync6.prg] <small>(not 100% stable - rerun on failure)</small> | ||
|| | ||PAL | ||
|| | || | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/powerup.prg?format=raw powerup.prg] | ||
|| | || | ||
|| | || | ||
Line 6,004: | Line 7,104: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/read-latch.prg?format=raw read-latch.prg] | |||
||PAL | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,017: | Line 7,120: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,029: | Line 7,128: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/stability.prg?format=raw stability.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,039: | Line 7,140: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,055: | Line 7,148: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/stability-ntsc.prg?format=raw stability-ntsc.prg] | ||
|| | ||NTSC | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,068: | Line 7,165: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/write-stop.prg?format=raw write-stop.prg] | ||
|| | || | ||
|| | || | ||
Line 6,082: | Line 7,184: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/ampmtest.prg?format=raw ampmtest.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,108: | Line 7,205: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:lightgrey;"|n/a | ||
| | |style="background:lightgrey;"|n/a | ||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/banking/ ../VICII/banking] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/banking/banking.prg?format=raw banking.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,120: | Line 7,220: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/border-250.prg?format=raw border-250.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,145: | Line 7,242: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/border-251.prg?format=raw border-251.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,160: | Line 7,265: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/border-252.prg?format=raw border-252.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,195: | Line 7,285: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/border-bm-idle.prg?format=raw border-bm-idle.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/border-bm-ysh2.prg?format=raw border-bm-ysh2.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,222: | Line 7,321: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/border-bm-ysh.prg?format=raw border-bm-ysh.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/border-mcbm.prg?format=raw border-mcbm.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,248: | Line 7,361: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/hvborder1.prg?format=raw hvborder1.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,264: | Line 7,382: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/hvborder2.prg?format=raw hvborder2.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,277: | Line 7,400: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/vborder-32-08.prg?format=raw vborder-32-08.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/vborder-32-09.prg?format=raw vborder-32-09.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,313: | Line 7,441: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/vborder-33-08.prg?format=raw vborder-33-08.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,342: | Line 7,470: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/vborder-33-09.prg?format=raw vborder-33-09.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,352: | Line 7,481: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,368: | Line 7,490: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/vborder2-21.prg?format=raw vborder2-21.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,381: | Line 7,504: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,391: | Line 7,510: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/vborder2-22.prg?format=raw vborder2-22.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,403: | Line 7,523: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/vborder2-35.prg?format=raw vborder2-35.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,417: | Line 7,541: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,430: | Line 7,548: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/vborder2-36.prg?format=raw vborder2-36.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/vborder2-63.prg?format=raw vborder2-63.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/vborder2-64.prg?format=raw vborder2-64.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,469: | Line 7,601: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,485: | Line 7,610: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/colorfetchbug/ ../VICII/colorfetchbug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/colorfetchbug/bitmap.prg?format=raw bitmap.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/colorfetchbug/ ../VICII/colorfetchbug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/colorfetchbug/main.prg?format=raw main.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/colorfetchbug/ ../VICII/colorfetchbug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/colorfetchbug/main2.prg?format=raw main2.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/colorfetchbug/ ../VICII/colorfetchbug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/colorfetchbug/main3.prg?format=raw main3.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/colorfetchbug/ ../VICII/colorfetchbug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/colorfetchbug/main4.prg?format=raw main4.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/colorsplit/ ../VICII/colorsplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/colorsplit/colorsplit.prg?format=raw colorsplit.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,559: | Line 7,720: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/D011Test/ ../VICII/D011Test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/D011Test/disable-bad.prg?format=raw disable-bad.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,574: | Line 7,740: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,588: | Line 7,748: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/D011Test/ ../VICII/D011Test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/D011Test/disable-bad_ntsc.prg?format=raw disable-bad_ntsc.prg] | ||
||NTSC | ||NTSC | ||
| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,628: | Line 7,765: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den01-48-0.prg?format=raw den01-48-0.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
Line 6,638: | Line 7,781: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,652: | Line 7,788: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den01-48-1.prg?format=raw den01-48-1.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
Line 6,665: | Line 7,802: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,678: | Line 7,809: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den01-48-2.prg?format=raw den01-48-2.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den01-49-0.prg?format=raw den01-49-0.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,823: | Line 7,849: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den01-49-1.prg?format=raw den01-49-1.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
Line 6,834: | Line 7,862: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den01-49-2.prg?format=raw den01-49-2.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
Line 6,847: | Line 7,882: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den10-48-0.prg?format=raw den10-48-0.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,886: | Line 7,907: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den10-48-1.prg?format=raw den10-48-1.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
Line 6,899: | Line 7,922: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,911: | Line 7,928: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den10-48-2.prg?format=raw den10-48-2.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
Line 6,924: | Line 7,941: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,938: | Line 7,948: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den10-51-0.prg?format=raw den10-51-0.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
Line 6,951: | Line 7,962: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 6,963: | Line 7,968: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den10- | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den10-51-1.prg?format=raw den10-51-1.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
Line 6,977: | Line 7,982: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den10- | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den10-51-2.prg?format=raw den10-51-2.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
Line 6,990: | Line 8,002: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 7,003: | Line 8,009: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den10-51- | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den10-51-3.prg?format=raw den10-51-3.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
Line 7,016: | Line 8,022: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 7,029: | Line 8,029: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/denrsel-0.prg?format=raw denrsel-0.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
Line 7,042: | Line 8,042: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 7,054: | Line 8,048: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
Line 7,068: | Line 8,062: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
Line 7,081: | Line 8,082: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
Line 7,094: | Line 8,102: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
Line 7,107: | Line 8,122: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
Line 7,120: | Line 8,142: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
Line 7,133: | Line 8,162: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
Line 7,146: | Line 8,182: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
Line 7,154: | Line 8,197: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,167: | Line 8,217: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,180: | Line 8,237: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,193: | Line 8,257: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,206: | Line 8,277: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,219: | Line 8,297: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,232: | Line 8,317: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,245: | Line 8,337: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,258: | Line 8,357: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,271: | Line 8,377: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,284: | Line 8,397: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,297: | Line 8,417: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,310: | Line 8,437: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,323: | Line 8,457: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,336: | Line 8,477: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,349: | Line 8,497: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,362: | Line 8,517: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,375: | Line 8,537: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,388: | Line 8,557: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,401: | Line 8,577: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,414: | Line 8,597: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test1-2a-03.prg?format=raw test1-2a-03.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test1-2a-04.prg?format=raw test1-2a-04.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test1-2a-10.prg?format=raw test1-2a-10.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test1-2a-11.prg?format=raw test1-2a-11.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |- | ||
|style="background: | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test1-2a-16.prg?format=raw test1-2a-16.prg] | ||
|style="background: | ||PAL | ||
|style="background: | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test1-2a-17.prg?format=raw test1-2a-17.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test1-2a-18.prg?format=raw test1-2a-18.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test2-28-05.prg?format=raw test2-28-05.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test2-28-06.prg?format=raw test2-28-06.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test2-28-11.prg?format=raw test2-28-11.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test2-28-12.prg?format=raw test2-28-12.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test2-28-16.prg?format=raw test2-28-16.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test2-28-17.prg?format=raw test2-28-17.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test2-28-18.prg?format=raw test2-28-18.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test3-28-07.prg?format=raw test3-28-07.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test3-28-08.prg?format=raw test3-28-08.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test3-28-13.prg?format=raw test3-28-13.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test3-28-14.prg?format=raw test3-28-14.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test3-28-18.prg?format=raw test3-28-18.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test3-28-19.prg?format=raw test3-28-19.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test3-28-1a.prg?format=raw test3-28-1a.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test1-2e-03-ntsc.prg?format=raw test1-2e-03-ntsc.prg] | |||
||NTSC | |||
||screenshot | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,643: | Line 9,052: | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test1-2e-04-ntsc.prg?format=raw test1-2e-04-ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,656: | Line 9,072: | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test1-2e-10-ntsc.prg?format=raw test1-2e-10-ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test1-2e-11-ntsc.prg?format=raw test1-2e-11-ntsc.prg] | |||
|- | ||NTSC | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | |||
|| | |||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,682: | Line 9,112: | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test1-2e-16-ntsc.prg?format=raw test1-2e-16-ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,695: | Line 9,132: | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test1 | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test1-2e-17-ntsc.prg?format=raw test1-2e-17-ntsc.prg] | ||
||NTSC | |||
|| | |||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test1-2e-18-ntsc.prg?format=raw test1-2e-18-ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test2-2c-05-ntsc.prg?format=raw test2-2c-05-ntsc.prg] | ||
||NTSC | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test2-2c-06-ntsc.prg?format=raw test2-2c-06-ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,812: | Line 9,212: | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test2-2c-11-ntsc.prg?format=raw test2-2c-11-ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 7,822: | Line 9,225: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test2-2c-12-ntsc.prg?format=raw test2-2c-12-ntsc.prg] | ||
|| | ||NTSC | ||
| | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background: | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 7,848: | Line 9,245: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test2-2c-16-ntsc.prg?format=raw test2-2c-16-ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test2-2c-17-ntsc.prg?format=raw test2-2c-17-ntsc.prg] | ||
|| | ||NTSC | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test2-2c-18-ntsc.prg?format=raw test2-2c-18-ntsc.prg] | ||
||NTSC | ||NTSC | ||
||screenshot | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test3-2c-07-ntsc.prg?format=raw test3-2c-07-ntsc.prg] | ||
||NTSC | ||NTSC | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 7,968: | Line 9,332: | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test3-2c-08-ntsc.prg?format=raw test3-2c-08-ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 7,990: | Line 9,345: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test3-2c-13-ntsc.prg?format=raw test3-2c-13-ntsc.prg] | ||
||NTSC | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 8,020: | Line 9,372: | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test3-2c-14-ntsc.prg?format=raw test3-2c-14-ntsc.prg] | ||
|| | ||NTSC | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 8,030: | Line 9,385: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test3-2c-18-ntsc.prg?format=raw test3-2c-18-ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test3-2c-19-ntsc.prg?format=raw test3-2c-19-ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/ ../VICII/dmadelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dmadelay/test3-2c-1a-ntsc.prg?format=raw test3-2c-1a-ntsc.prg] | ||
||NTSC | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 8,137: | Line 9,452: | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/fldscroll/ ../VICII/fldscroll] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/fldscroll/fldscroll-20-60.prg?format=raw fldscroll-20-60.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/fldscroll/ ../VICII/fldscroll] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/fldscroll/fldscroll-21-60.prg?format=raw fldscroll-21-60.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/fldscroll/ ../VICII/fldscroll] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/fldscroll/fldscroll-22-60.prg?format=raw fldscroll-22-60.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/fldscroll/ ../VICII/fldscroll] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/fldscroll/fldscroll-29-60.prg?format=raw fldscroll-29-60.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/fldscroll/ ../VICII/fldscroll] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/fldscroll/fldscroll-2A-60.prg?format=raw fldscroll-2A-60.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/fldscroll/ ../VICII/fldscroll] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/fldscroll/fldscroll-2B-60.prg?format=raw fldscroll-2B-60.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/flibug/ ../VICII/flibug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/flibug/blackmail-ee.prg?format=raw blackmail-ee.prg] <small>(relies on LAX magic constant being 0xee)</small> | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/flibug/ ../VICII/flibug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/flibug/blackmail-fixed.prg?format=raw blackmail-fixed.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/frodotests/ ../VICII/frodotests] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/frodotests/text26.prg?format=raw text26.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/gfxfetch/ ../VICII/gfxfetch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/gfxfetch/gfxfetch.prg?format=raw gfxfetch.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/gfxfetch/ ../VICII/gfxfetch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/gfxfetch/gfxfetch_ntsc.prg?format=raw gfxfetch_ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/greydot/ ../VICII/greydot] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/greydot/greydot.prg?format=raw greydot.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/lplatency/ ../VICII/lplatency] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/lplatency/lplatency.prg?format=raw lplatency.prg] | ||
||PAL | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 8,433: | Line 9,707: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/lp-trigger/ ../VICII/lp-trigger] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/lp-trigger/test1.prg?format=raw test1.prg] | ||
||PAL | |||
|| | |||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/lp-trigger/ ../VICII/lp-trigger] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/lp-trigger/test2.prg?format=raw test2.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/lp-trigger/ ../VICII/lp-trigger] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/lp-trigger/test2new.prg?format=raw test2new.prg] | ||
||PAL | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/phi1timing/ ../VICII/phi1timing] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/phi1timing/phi1timing.prg?format=raw phi1timing.prg] | ||
||PAL | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 8,536: | Line 9,785: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/phi1timing/ ../VICII/phi1timing] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/phi1timing/phi1timing_ntsc.prg?format=raw phi1timing_ntsc.prg] | ||
|| | ||NTSC | ||
|| | || | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/phi1timing/ ../VICII/phi1timing] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/phi1timing/phi1timing_ntscold.prg?format=raw phi1timing_ntscold.prg] | ||
|| | ||NTSCOLD | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 8,565: | Line 9,820: | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 8,592: | Line 9,832: | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/rasterirq/ ../VICII/rasterirq] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/rasterirq/rasterirq_hold.prg?format=raw rasterirq_hold.prg] | ||
|| | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/screenpos/ ../VICII/screenpos] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/screenpos/screenpos.prg?format=raw screenpos.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:lime;"|ok | ||
| | |style="background:lime;"|ok | ||
| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|| | |style="background:lime;"|ok | ||
|style="background: | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/sb_sprite_fetch/ ../VICII/sb_sprite_fetch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/sb_sprite_fetch/sbsprf24-163.prg?format=raw sbsprf24-163.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background: | |||
|style="background:red;"| | |||
|style="background: | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/sb_sprite_fetch/ ../VICII/sb_sprite_fetch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/sb_sprite_fetch/sbsprf24-164.prg?format=raw sbsprf24-164.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/screenpos/ ../VICII/screenpos] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/screenpos/screenpos_ntsc.prg?format=raw screenpos_ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/split-tests/bascan/ ../VICII/split-tests/bascan] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/split-tests/bascan/bascan.prg?format=raw bascan.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/split-tests/fetchsplit/ ../VICII/split-tests/fetchsplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/split-tests/fetchsplit/fetchsplit.prg?format=raw fetchsplit.prg] | ||
||PAL | |||
||screenshot | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/split-tests/lightpen/ ../VICII/split-tests/lightpen] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/split-tests/lightpen/lightpen.prg?format=raw lightpen.prg] | |||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/split-tests/modesplit/ ../VICII/split-tests/modesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/split-tests/modesplit/modesplit.prg?format=raw modesplit.prg] | ||
|| | || | ||
|style="background: | ||screenshot | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/split-tests/spritescan/ ../VICII/split-tests/spritescan] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/split-tests/spritescan/spritescan.prg?format=raw spritescan.prg] | ||
||PAL | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 8,796: | Line 10,021: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/vicii_timing/ ../VICII/vicii_timing] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/vicii_timing/vicii_reg_timing.prg?format=raw vicii_reg_timing.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/vicii_timing/ ../VICII/vicii_timing] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/vicii_timing/vicii_reg_timing-a5.prg?format=raw vicii_reg_timing-a5.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/vicii_timing/ ../VICII/vicii_timing] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/vicii_timing/vicii_reg_timing-ff.prg?format=raw vicii_reg_timing-ff.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/rmwtest.prg?format=raw rmwtest.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/rmwtest_ntsc.prg?format=raw rmwtest_ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode1.prg?format=raw videomode1.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode2.prg?format=raw videomode2.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode-v.prg?format=raw videomode-v.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode-w.prg?format=raw videomode-w.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode-x.prg?format=raw videomode-x.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode-y.prg?format=raw videomode-y.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode-z.prg?format=raw videomode-z.prg] | ||
||PAL | ||PAL | ||
||screenshot | ||screenshot | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode-v_ntsc.prg?format=raw videomode-v_ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |||
|style="background:red;"| | |||
|style="background: | |||
|style="background: | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:red;"| | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode-w_ntsc.prg?format=raw videomode-w_ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background: | |||
|style="background: | |||
|style="background: | |||
|style="background: | |||
|style="background: | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background: | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode-x_ntsc.prg?format=raw videomode-x_ntsc.prg] | ||
|| | ||NTSC | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode-y_ntsc.prg?format=raw videomode-y_ntsc.prg] | ||
||NTSC | ||NTSC | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode-z_ntsc.prg?format=raw videomode-z_ntsc.prg] | ||
|| | ||NTSC | ||
||screenshot | |||
| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode2_ntsc.prg?format=raw videomode2_ntsc.prg] | ||
|| | ||NTSC | ||
|| | ||screenshot | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode1_ntsc.prg?format=raw videomode1_ntsc.prg] | ||
||NTSC | ||NTSC | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode1_ntscold.prg?format=raw videomode1_ntscold.prg] | ||
|| | ||NTSCOLD | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode2_ntscold.prg?format=raw videomode2_ntscold.prg] | ||
|| | ||NTSCOLD | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode-v_ntscold.prg?format=raw videomode-v_ntscold.prg] | ||
||NTSCOLD | |||
||screenshot | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode-w_ntscold.prg?format=raw videomode-w_ntscold.prg] | |||
||NTSCOLD | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:red;"| | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode-x_ntscold.prg?format=raw videomode-x_ntscold.prg] | ||
||NTSCOLD | |||
||screenshot | |||
|| | |||
| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode-y_ntscold.prg?format=raw videomode-y_ntscold.prg] | ||
|| | ||NTSCOLD | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode-z_ntscold.prg?format=raw videomode-z_ntscold.prg] | |||
||NTSCOLD | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:red;"| | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/vspbug/ ../VICII/vspbug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/vspbug/vsp_bug.prg?format=raw vsp_bug.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,276: | Line 10,565: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/vsp-tester/ ../VICII/vsp-tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/vsp-tester/vsp-tester.prg?format=raw vsp-tester.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:lightblue;"|timeout | ||
|style="background: | |style="background:lightblue;"|timeout | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightblue;"|timeout | |style="background:lightblue;"|timeout | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/vsp-tester/ ../VICII/vsp-tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/vsp-tester/vsp-tester-ntsc.prg?format=raw vsp-tester-ntsc.prg] | ||
|| | ||NTSC | ||
|| | || | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/sequencer-bug/ ../VICII/sequencer-bug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/sequencer-bug/bug.prg?format=raw bug.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritebug/ ../VICII/spritebug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritebug/spritebug-104.prg?format=raw spritebug-104.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,316: | Line 10,641: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"| | |style="background:lightgrey;"|n/a | ||
|style="background: | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritebug/ ../VICII/spritebug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritebug/spritebug-105.prg?format=raw spritebug-105.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,342: | Line 10,661: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritebug/ ../VICII/spritebug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritebug/spritebug-106.prg?format=raw spritebug-106.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,355: | Line 10,681: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"| | |style="background:lightgrey;"|n/a | ||
|style="background: | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/ ../VICII/spritecollisions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/sprite-gfx-collision-cycle.prg?format=raw sprite-gfx-collision-cycle.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,381: | Line 10,701: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/ ../VICII/spritecollisions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/sprite-sprite-collision-cycle.prg?format=raw sprite-sprite-collision-cycle.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,394: | Line 10,721: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/ ../VICII/spritecollisions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/sprite-sprite.prg?format=raw sprite-sprite.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,407: | Line 10,741: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,421: | Line 10,749: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/ ../VICII/spritecollisions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/sprite-sprite-hi-hi.prg?format=raw sprite-sprite-hi-hi.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,485: | Line 10,771: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/ ../VICII/spritecollisions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/sprite-sprite-mc-hi.prg?format=raw sprite-sprite-mc-hi.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,497: | Line 10,780: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,524: | Line 10,791: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/ ../VICII/spritecollisions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/sprite-sprite-hi-mc.prg?format=raw sprite-sprite-hi-mc.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/ ../VICII/spritecollisions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/sprite-sprite-mc-mc.prg?format=raw sprite-sprite-mc-mc.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,589: | Line 10,831: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/ ../VICII/spritecollisions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/sprite-gfx-hi-hi.prg?format=raw sprite-gfx-hi-hi.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
| | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,615: | Line 10,851: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/ ../VICII/spritecollisions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/sprite-gfx-mc-hi.prg?format=raw sprite-gfx-mc-hi.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,654: | Line 10,871: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/ ../VICII/spritecollisions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/sprite-gfx-hi-mc.prg?format=raw sprite-gfx-hi-mc.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
| | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,693: | Line 10,891: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/ ../VICII/spritecollisions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecollisions/sprite-gfx-mc-mc.prg?format=raw sprite-gfx-mc-mc.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 9,732: | Line 10,911: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/ ../VICII/spritecrunch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/spritecrunch-3b-00.prg?format=raw spritecrunch-3b-00.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/ ../VICII/spritecrunch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/spritecrunch-3c-00.prg?format=raw spritecrunch-3c-00.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/ ../VICII/spritecrunch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/spritecrunch-3d-00.prg?format=raw spritecrunch-3d-00.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/ ../VICII/spritecrunch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/spritecrunch2-07.prg?format=raw spritecrunch2-07.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/ ../VICII/spritecrunch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/spritecrunch2-08.prg?format=raw spritecrunch2-08.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/ ../VICII/spritecrunch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/spritecrunch2-09.prg?format=raw spritecrunch2-09.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/ ../VICII/spritecrunch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/spritecrunch2-25.prg?format=raw spritecrunch2-25.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
| | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/ ../VICII/spritecrunch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/spritecrunch2-26.prg?format=raw spritecrunch2-26.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
| | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/ ../VICII/spritecrunch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/spritecrunch2-27.prg?format=raw spritecrunch2-27.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
| | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/ ../VICII/spritecrunch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/spritecrunch2-28.prg?format=raw spritecrunch2-28.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
| | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/ ../VICII/spritecrunch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritecrunch/spritecrunch2-29.prg?format=raw spritecrunch2-29.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"| | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritedma/ ../VICII/spritedma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritedma/d017-54.prg?format=raw d017-54.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritedma/ ../VICII/spritedma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritedma/d017-57.prg?format=raw d017-57.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritedma/ ../VICII/spritedma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritedma/d017-54_ntsc.prg?format=raw d017-54_ntsc.prg] | ||
|| | ||NTSC | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 10,188: | Line 11,183: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritedma/ ../VICII/spritedma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritedma/d017-57_ntsc.prg?format=raw d017-57_ntsc.prg] | ||
|| | ||NTSC | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,225: | Line 11,207: | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable1.prg?format=raw spriteenable1.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable2.prg?format=raw spriteenable2.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable3.prg?format=raw spriteenable3.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable4.prg?format=raw spriteenable4.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable5.prg?format=raw spriteenable5.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,316: | Line 11,300: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable1_ntsc.prg?format=raw spriteenable1_ntsc.prg] | |||
||NTSC | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable2_ntsc.prg?format=raw spriteenable2_ntsc.prg] | ||
|| | ||NTSC | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable3_ntsc.prg?format=raw spriteenable3_ntsc.prg] | |||
||NTSC | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable4_ntsc.prg?format=raw spriteenable4_ntsc.prg] | ||
|| | ||NTSC | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable5_ntsc.prg?format=raw spriteenable5_ntsc.prg] | |||
||NTSC | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable1_ntscold.prg?format=raw spriteenable1_ntscold.prg] | |||
||NTSCOLD | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |style="background:lightgrey;"|n/a | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | |style="background:lightgrey;"|n/a | ||
|| | |style="background:red;"|fail | ||
|| | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable2_ntscold.prg?format=raw spriteenable2_ntscold.prg] | |||
||NTSCOLD | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable3_ntscold.prg?format=raw spriteenable3_ntscold.prg] | |||
||NTSCOLD | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:red;"| | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable4_ntscold.prg?format=raw spriteenable4_ntscold.prg] | ||
|| | ||NTSCOLD | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:red;"| | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable5_ntscold.prg?format=raw spriteenable5_ntscold.prg] | ||
|| | ||NTSCOLD | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritefetchbug/ ../VICII/spritefetchbug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritefetchbug/test-136-2a.prg?format=raw test-136-2a.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritegap/ ../VICII/spritegap] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritegap/spritegap2.prg?format=raw spritegap2.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritegap/ ../VICII/spritegap] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritegap/spritegap3.prg?format=raw spritegap3.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,421: | Line 11,561: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritepriorities/ ../VICII/spritepriorities] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritepriorities/test1.prg?format=raw test1.prg] | ||
|| | || | ||
||screenshot | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,434: | Line 11,584: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,446: | Line 11,589: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriterestart/ ../VICII/spriterestart] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriterestart/spriterestart.prg?format=raw spriterestart.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,460: | Line 11,601: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,473: | Line 11,609: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-exp-unexp-hires.prg?format=raw ss-exp-unexp-hires.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-exp-unexp-mc.prg?format=raw ss-exp-unexp-mc.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-hires-color.prg?format=raw ss-hires-color.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,511: | Line 11,660: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background: | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-hires-mc-exp.prg?format=raw ss-hires-mc-exp.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-hires-mc.prg?format=raw ss-hires-mc.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-mc-color0.prg?format=raw ss-mc-color0.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,563: | Line 11,720: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-mc-color1.prg?format=raw ss-mc-color1.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-mc-color2.prg?format=raw ss-mc-color2.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-mc-hires-exp.prg?format=raw ss-mc-hires-exp.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:lightgrey;"|n/a | ||
|style="background: | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-mc-hires.prg?format=raw ss-mc-hires.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:lightgrey;"|n/a | ||
|style="background: | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-pri-exp.prg?format=raw ss-pri-exp.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,642: | Line 11,821: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-pri-mc-exp.prg?format=raw ss-pri-mc-exp.prg] | ||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |||
|| | |||
| | |||
|style="background: | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-pri-mc.prg?format=raw ss-pri-mc.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,720: | Line 11,861: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
| | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-pri.prg?format=raw ss-pri.prg] | |||
||PAL | |||
||screenshot | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-unexp-exp-hires.prg?format=raw ss-unexp-exp-hires.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,758: | Line 11,900: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:lightgrey;"|n/a | ||
|style="background: | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-unexp-exp-mc.prg?format=raw ss-unexp-exp-mc.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,784: | Line 11,920: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"| | |style="background:lightgrey;"|n/a | ||
|style="background:red;"| | |||
|style="background: | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-xpos.prg?format=raw ss-xpos.prg] | ||
|| | ||PAL | ||
|| | ||screenshot | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,810: | Line 11,940: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"| | |style="background:lightgrey;"|n/a | ||
|style="background:red;"| | |||
|style="background: | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesteal/ ../VICII/spritesteal] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesteal/spritesteal.prg?format=raw spritesteal.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,837: | Line 11,961: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,850: | Line 11,967: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesteal/ ../VICII/spritesteal] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesteal/spritesteal_ntsc.prg?format=raw spritesteal_ntsc.prg] | |||
||NTSC | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,875: | Line 11,985: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesteal/ ../VICII/spritesteal] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesteal/spritesteal_ntscold.prg?format=raw spritesteal_ntscold.prg] | ||
|| | ||NTSCOLD | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritevssprite/ ../VICII/spritevssprite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritevssprite/spritevssprite.prg?format=raw spritevssprite.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritex/ ../VICII/spritex] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritex/demusinterruptus.prg?format=raw demusinterruptus.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,915: | Line 12,041: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:lightgrey;"|n/a | ||
|style="background: | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritex/ ../VICII/spritex] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritex/testsuite.prg?format=raw testsuite.prg] | ||
|| | ||PAL | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 10,954: | Line 12,061: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritex/ ../VICII/spritex] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritex/testsuite_ntsc.prg?format=raw testsuite_ntsc.prg] | ||
|| | ||NTSC | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritex/ ../VICII/spritex] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritex/testsuite_ntscold.prg?format=raw testsuite_ntscold.prg] | ||
|| | ||NTSCOLD | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritey/ ../VICII/spritey] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritey/spritey.prg?format=raw spritey.prg] | |||
||PAL | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/busvalue/ ../SID/busvalue] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/busvalue/busvalue.prg?format=raw busvalue.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 11,006: | Line 12,141: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/detect/ ../SID/detect] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/detect/detect-1-old.prg?format=raw detect-1-old.prg] | ||
||6581 | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 11,032: | Line 12,168: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/detect/ ../SID/detect] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/detect/detect-1-new.prg?format=raw detect-1-new.prg] | ||
|| | ||8580 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/detect/ ../SID/detect] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/detect/detect-2-old.prg?format=raw detect-2-old.prg] | ||
||6581 | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/detect/ ../SID/detect] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/detect/detect-2-new.prg?format=raw detect-2-new.prg] | ||
|| | ||8580 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 11,175: | Line 12,226: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/env_test/ ../SID/env_test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/env_test/env_test_ra_0000.prg?format=raw env_test_ra_0000.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 11,188: | Line 12,241: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/env_test/ ../SID/env_test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/env_test/env_test_ra_0100.prg?format=raw env_test_ra_0100.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 11,201: | Line 12,261: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/env_test/ ../SID/env_test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/env_test/env_test_adra_1.prg?format=raw env_test_adra_1.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 11,214: | Line 12,281: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/env_test/ ../SID/env_test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/env_test/env_test_adra_2.prg?format=raw env_test_adra_2.prg] | ||
|| | || | ||
|| | || | ||
Line 11,227: | Line 12,301: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/env_test/ ../SID/env_test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/env_test/env_test_ar_1.prg?format=raw env_test_ar_1.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |style="background:lightblue;"|timeout | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/env_test/ ../SID/env_test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/env_test/env_test_ar_2.prg?format=raw env_test_ar_2.prg] | ||
|| | || | ||
|| | || | ||
Line 11,306: | Line 12,342: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/env_test/ ../SID/env_test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/env_test/env_test_ar_3.prg?format=raw env_test_ar_3.prg] | ||
|| | || | ||
|| | || | ||
Line 11,319: | Line 12,362: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/envelope/ ../SID/envelope] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/envelope/testADSRDelayBug.prg?format=raw testADSRDelayBug.prg] | ||
|| | || | ||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 11,345: | Line 12,388: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightblue;"|timeout | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/envelope/ ../SID/envelope] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/envelope/testFlip00toFF.prg?format=raw testFlip00toFF.prg] | ||
|| | || | ||
|| | || | ||
Line 11,358: | Line 12,402: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/envelope/ ../SID/envelope] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/envelope/testFlipFFto00.prg?format=raw testFlipFFto00.prg] | ||
|| | || | ||
|| | || | ||
Line 11,380: | Line 12,418: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/envelope/ ../SID/envelope] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/envelope/lft-adsr-test.prg?format=raw lft-adsr-test.prg] | ||
|| | || | ||
|| | || | ||
Line 11,409: | Line 12,441: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 11,461: | Line 12,448: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/exp_counter_reset/ ../SID/exp_counter_reset] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/exp_counter_reset/env_test_exr.prg?format=raw env_test_exr.prg] | ||
|| | || | ||
|| | || | ||
Line 11,679: | Line 12,458: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noiselfsrinit/ ../SID/noiselfsrinit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noiselfsrinit/simple.prg?format=raw simple.prg] | ||
|| | ||8580 | ||
|| | || | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noiselfsrinit/ ../SID/noiselfsrinit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noiselfsrinit/scan.prg?format=raw scan.prg] | |||
||8580 | |||
|| | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noiselfsrinit/ ../SID/noiselfsrinit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noiselfsrinit/simple.prg?format=raw simple.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noiselfsrinit/ ../SID/noiselfsrinit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noiselfsrinit/scan.prg?format=raw scan.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noisewriteback/ ../SID/noisewriteback] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noisewriteback/noise_writeback_test1-old.prg?format=raw noise_writeback_test1-old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noisewriteback/ ../SID/noisewriteback] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noisewriteback/noise_writeback_test1-new.prg?format=raw noise_writeback_test1-new.prg] | ||
|| | ||8580 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noisewriteback/ ../SID/noisewriteback] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noisewriteback/noise_writeback_test2-old.prg?format=raw noise_writeback_test2-old.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noisewriteback/ ../SID/noisewriteback] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/noisewriteback/noise_writeback_test2-new.prg?format=raw noise_writeback_test2-new.prg] | ||
||8580 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_8_to_8_old.prg?format=raw noise_writeback_check_8_to_8_old.prg] | ||
||6581 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_8_to_9_old.prg?format=raw noise_writeback_check_8_to_9_old.prg] | ||
||6581 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_8_to_A_old.prg?format=raw noise_writeback_check_8_to_A_old.prg] | ||
||6581 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_8_to_B_old.prg?format=raw noise_writeback_check_8_to_B_old.prg] | ||
||6581 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_8_to_C_old.prg?format=raw noise_writeback_check_8_to_C_old.prg] | ||
||6581 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_8_to_D_old.prg?format=raw noise_writeback_check_8_to_D_old.prg] | ||
||6581 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_8_to_E_old.prg?format=raw noise_writeback_check_8_to_E_old.prg] | ||
||6581 | |||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_8_to_F_old.prg?format=raw noise_writeback_check_8_to_F_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,006: | Line 12,785: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_9_to_8_old.prg?format=raw noise_writeback_check_9_to_8_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_9_to_9_old.prg?format=raw noise_writeback_check_9_to_9_old.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,034: | Line 12,826: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_9_to_A_old.prg?format=raw noise_writeback_check_9_to_A_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,061: | Line 12,845: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_9_to_B_old.prg?format=raw noise_writeback_check_9_to_B_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,074: | Line 12,865: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_9_to_C_old.prg?format=raw noise_writeback_check_9_to_C_old.prg] | ||
||6581 | |||
|| | || | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_9_to_D_old.prg?format=raw noise_writeback_check_9_to_D_old.prg] | |||
||6581 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,162: | Line 12,906: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_9_to_E_old.prg?format=raw noise_writeback_check_9_to_E_old.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,176: | Line 12,925: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_9_to_F_old.prg?format=raw noise_writeback_check_9_to_F_old.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,189: | Line 12,945: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_A_to_8_old.prg?format=raw noise_writeback_check_A_to_8_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_A_to_9_old.prg?format=raw noise_writeback_check_A_to_9_old.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_A_to_A_old.prg?format=raw noise_writeback_check_A_to_A_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_A_to_B_old.prg?format=raw noise_writeback_check_A_to_B_old.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_A_to_C_old.prg?format=raw noise_writeback_check_A_to_C_old.prg] | |||
||6581 | |||
|| | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_A_to_D_old.prg?format=raw noise_writeback_check_A_to_D_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,256: | Line 13,065: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_A_to_E_old.prg?format=raw noise_writeback_check_A_to_E_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,269: | Line 13,086: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_A_to_F_old.prg?format=raw noise_writeback_check_A_to_F_old.prg] | ||
||6581 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,294: | Line 13,106: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_B_to_8_old.prg?format=raw noise_writeback_check_B_to_8_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_B_to_9_old.prg?format=raw noise_writeback_check_B_to_9_old.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,319: | Line 13,145: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_B_to_A_old.prg?format=raw noise_writeback_check_B_to_A_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,332: | Line 13,165: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_B_to_B_old.prg?format=raw noise_writeback_check_B_to_B_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_B_to_D_old.prg?format=raw noise_writeback_check_B_to_D_old.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,371: | Line 13,206: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_B_to_E_old.prg?format=raw noise_writeback_check_B_to_E_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,384: | Line 13,225: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_B_to_F_old.prg?format=raw noise_writeback_check_B_to_F_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,397: | Line 13,246: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_C_to_8_old.prg?format=raw noise_writeback_check_C_to_8_old.prg] | ||
||6581 | |||
|| | || | ||
|| | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_C_to_9_old.prg?format=raw noise_writeback_check_C_to_9_old.prg] | ||
||6581 | |||
|| | || | ||
|| | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_C_to_A_old.prg?format=raw noise_writeback_check_C_to_A_old.prg] | ||
||6581 | |||
|| | || | ||
|| | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_C_to_B_old.prg?format=raw noise_writeback_check_C_to_B_old.prg] | ||
||6581 | |||
|| | || | ||
|| | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_C_to_C_old.prg?format=raw noise_writeback_check_C_to_C_old.prg] | ||
||6581 | |||
|| | || | ||
|style="background:lightgrey;"| | |style="background:lime;"|ok | ||
|style="background:lightgrey;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_C_to_D_old.prg?format=raw noise_writeback_check_C_to_D_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,475: | Line 13,366: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_C_to_E_old.prg?format=raw noise_writeback_check_C_to_E_old.prg] | ||
||6581 | |||
|| | || | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"| | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lightgrey;"| | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |||
|style="background: | |||
|style="background: | |||
|style="background: | |||
|style="background: | |||
|style="background: | |||
|style="background: | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_C_to_F_old.prg?format=raw noise_writeback_check_C_to_F_old.prg] | ||
||6581 | |||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_D_to_8_old.prg?format=raw noise_writeback_check_D_to_8_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_D_to_9_old.prg?format=raw noise_writeback_check_D_to_9_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
Line 12,724: | Line 13,444: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_D_to_A_old.prg?format=raw noise_writeback_check_D_to_A_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 12,737: | Line 13,465: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_D_to_B_old.prg?format=raw noise_writeback_check_D_to_B_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_D_to_C_old.prg?format=raw noise_writeback_check_D_to_C_old.prg] | |||
||6581 | |||
|| | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_D_to_D_old.prg?format=raw noise_writeback_check_D_to_D_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_D_to_E_old.prg?format=raw noise_writeback_check_D_to_E_old.prg] | |||
||6581 | |||
|| | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_D_to_F_old.prg?format=raw noise_writeback_check_D_to_F_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:lightgrey;"|n/a | ||
| | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background: | |||
|style="background: | |||
| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_E_to_8_old.prg?format=raw noise_writeback_check_E_to_8_old.prg] | ||
||6581 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:red;"|fail | ||
|style="background:lightgrey;"|n/a | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_E_to_9_old.prg?format=raw noise_writeback_check_E_to_9_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:lightgrey;"|n/a | ||
| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_E_to_A_old.prg?format=raw noise_writeback_check_E_to_A_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:lightgrey;"|n/a | ||
| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_E_to_B_old.prg?format=raw noise_writeback_check_E_to_B_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:lightgrey;"|n/a | ||
| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_E_to_C_old.prg?format=raw noise_writeback_check_E_to_C_old.prg] | ||
||6581 | |||
|| | || | ||
|| | |style="background:red;"|fail | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_E_to_E_old.prg?format=raw noise_writeback_check_E_to_E_old.prg] | ||
||6581 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background: | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_E_to_F_old.prg?format=raw noise_writeback_check_E_to_F_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:lightgrey;"|n/a | ||
| | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|| | |||
|style="background: | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_F_to_8_old.prg?format=raw noise_writeback_check_F_to_8_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background: | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_F_to_9_old.prg?format=raw noise_writeback_check_F_to_9_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:lightgrey;"|n/a | ||
| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_F_to_A_old.prg?format=raw noise_writeback_check_F_to_A_old.prg] | ||
||6581 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background: | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_F_to_B_old.prg?format=raw noise_writeback_check_F_to_B_old.prg] | ||
||6581 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_F_to_C_old.prg?format=raw noise_writeback_check_F_to_C_old.prg] | ||
||6581 | |||
|| | || | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_F_to_D_old.prg?format=raw noise_writeback_check_F_to_D_old.prg] | |||
||6581 | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:lightgrey;"|n/a | ||
|| | |style="background:lime;"|ok | ||
|| | |style="background:lightgrey;"|n/a | ||
|| | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_F_to_E_old.prg?format=raw noise_writeback_check_F_to_E_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:lightgrey;"|n/a | ||
| | |style="background:lime;"|ok | ||
|| | |style="background:lightgrey;"|n/a | ||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_F_to_F_old.prg?format=raw noise_writeback_check_F_to_F_old.prg] | ||
|| | ||6581 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:lightgrey;"|n/a | ||
| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_8_to_8_new.prg?format=raw noise_writeback_check_8_to_8_new.prg] | ||
||8580 | |||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
| | |style="background:lightgrey;"|n/a | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_8_to_9_new.prg?format=raw noise_writeback_check_8_to_9_new.prg] | ||
|| | ||8580 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_8_to_A_new.prg?format=raw noise_writeback_check_8_to_A_new.prg] | ||
||8580 | |||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_8_to_B_new.prg?format=raw noise_writeback_check_8_to_B_new.prg] | ||
|| | ||8580 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_8_to_D_new.prg?format=raw noise_writeback_check_8_to_D_new.prg] | ||
|| | ||8580 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_8_to_E_new.prg?format=raw noise_writeback_check_8_to_E_new.prg] | ||
|| | ||8580 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
| | |style="background:lime;"|ok | ||
=== | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_8_to_F_new.prg?format=raw noise_writeback_check_8_to_F_new.prg] | ||
|| | ||8580 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_9_to_8_new.prg?format=raw noise_writeback_check_9_to_8_new.prg] | ||
||8580 | |||
|| | || | ||
|| | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_9_to_9_new.prg?format=raw noise_writeback_check_9_to_9_new.prg] | ||
||8580 | |||
|| | || | ||
|style="background:lightgrey;"| | |style="background:lime;"|ok | ||
|style="background:lightgrey;"| | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_9_to_B_new.prg?format=raw noise_writeback_check_9_to_B_new.prg] | ||
||8580 | |||
|| | || | ||
|style="background:lightgrey;"| | |style="background:lime;"|ok | ||
|style="background:lightgrey;"| | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_9_to_D_new.prg?format=raw noise_writeback_check_9_to_D_new.prg] | ||
||8580 | |||
|| | || | ||
|style="background:lightgrey;"| | |style="background:lime;"|ok | ||
|style="background:lightgrey;"| | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_9_to_F_new.prg?format=raw noise_writeback_check_9_to_F_new.prg] | ||
||8580 | |||
|| | || | ||
|style="background:lightgrey;"| | |style="background:lime;"|ok | ||
|style="background:lightgrey;"| | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_A_to_8_new.prg?format=raw noise_writeback_check_A_to_8_new.prg] | ||
||8580 | |||
|| | || | ||
|style="background:lightgrey;"| | |style="background:lime;"|ok | ||
|style="background:lightgrey;"| | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_A_to_9_new.prg?format=raw noise_writeback_check_A_to_9_new.prg] | ||
||8580 | |||
|| | || | ||
|style="background:lightgrey;"| | |style="background:lime;"|ok | ||
|style="background:lightgrey;"| | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_A_to_A_new.prg?format=raw noise_writeback_check_A_to_A_new.prg] | ||
|| | ||8580 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
| | |style="background:lime;"|ok | ||
=== | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_A_to_B_new.prg?format=raw noise_writeback_check_A_to_B_new.prg] | ||
|| | ||8580 | ||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_A_to_D_new.prg?format=raw noise_writeback_check_A_to_D_new.prg] | ||
||8580 | |||
|| | || | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_A_to_E_new.prg?format=raw noise_writeback_check_A_to_E_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_A_to_F_new.prg?format=raw noise_writeback_check_A_to_F_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_B_to_9_new.prg?format=raw noise_writeback_check_B_to_9_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_B_to_A_new.prg?format=raw noise_writeback_check_B_to_A_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_B_to_B_new.prg?format=raw noise_writeback_check_B_to_B_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_B_to_D_new.prg?format=raw noise_writeback_check_B_to_D_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_B_to_E_new.prg?format=raw noise_writeback_check_B_to_E_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_B_to_F_new.prg?format=raw noise_writeback_check_B_to_F_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_C_to_8_new.prg?format=raw noise_writeback_check_C_to_8_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_C_to_9_new.prg?format=raw noise_writeback_check_C_to_9_new.prg] | |||
||8580 | |||
|| | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_C_to_A_new.prg?format=raw noise_writeback_check_C_to_A_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_C_to_E_new.prg?format=raw noise_writeback_check_C_to_E_new.prg] | |||
||8580 | |||
|| | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_C_to_F_new.prg?format=raw noise_writeback_check_C_to_F_new.prg] | |||
||8580 | |||
|| | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_D_to_8_new.prg?format=raw noise_writeback_check_D_to_8_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_D_to_9_new.prg?format=raw noise_writeback_check_D_to_9_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_D_to_B_new.prg?format=raw noise_writeback_check_D_to_B_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_D_to_D_new.prg?format=raw noise_writeback_check_D_to_D_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_D_to_F_new.prg?format=raw noise_writeback_check_D_to_F_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_E_to_8_new.prg?format=raw noise_writeback_check_E_to_8_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_E_to_9_new.prg?format=raw noise_writeback_check_E_to_9_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_E_to_A_new.prg?format=raw noise_writeback_check_E_to_A_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_E_to_B_new.prg?format=raw noise_writeback_check_E_to_B_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_E_to_D_new.prg?format=raw noise_writeback_check_E_to_D_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_E_to_E_new.prg?format=raw noise_writeback_check_E_to_E_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_E_to_F_new.prg?format=raw noise_writeback_check_E_to_F_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_F_to_9_new.prg?format=raw noise_writeback_check_F_to_9_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_F_to_A_new.prg?format=raw noise_writeback_check_F_to_A_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_F_to_B_new.prg?format=raw noise_writeback_check_F_to_B_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_F_to_D_new.prg?format=raw noise_writeback_check_F_to_D_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_F_to_E_new.prg?format=raw noise_writeback_check_F_to_E_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/ ../SID/wb_testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wb_testsuite/noise_writeback_check_F_to_F_new.prg?format=raw noise_writeback_check_F_to_F_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc3-wave0/ ../SID/osc3-wave0] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc3-wave0/osc3-wave0.prg?format=raw osc3-wave0.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc3-wave0/ ../SID/osc3-wave0] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc3-wave0/osc3-wave0-new.prg?format=raw osc3-wave0-new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc_topbit/ ../SID/osc_topbit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc_topbit/osc_topbit_test_noise_new.prg?format=raw osc_topbit_test_noise_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc_topbit/ ../SID/osc_topbit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc_topbit/osc_topbit_test_noise_old.prg?format=raw osc_topbit_test_noise_old.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc_topbit/ ../SID/osc_topbit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc_topbit/osc_topbit_test_pulse_new.prg?format=raw osc_topbit_test_pulse_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc_topbit/ ../SID/osc_topbit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc_topbit/osc_topbit_test_pulse_old.prg?format=raw osc_topbit_test_pulse_old.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc_topbit/ ../SID/osc_topbit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc_topbit/osc_topbit_test_triangle_new.prg?format=raw osc_topbit_test_triangle_new.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc_topbit/ ../SID/osc_topbit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/osc_topbit/osc_topbit_test_triangle_old.prg?format=raw osc_topbit_test_triangle_old.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/oscinit/ ../SID/oscinit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/oscinit/oscinit.prg?format=raw oscinit.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/oscinit/ ../SID/oscinit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/oscinit/noiseinit.prg?format=raw noiseinit.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/oscinit/ ../SID/oscinit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/oscinit/allinit.prg?format=raw allinit.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/ ../SID/resid-test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/boundary.prg?format=raw boundary.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/boundary.d64?format=raw boundary.d64]) | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |||
|style="background:lightblue;"|timeout | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/ ../SID/resid-test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/envdelay.prg?format=raw envdelay.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/ ../SID/resid-test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/envrate.prg?format=raw envrate.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |||
|style="background:lightblue;"|timeout | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/ ../SID/resid-test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/envsample.prg?format=raw envsample.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/envsample.d64?format=raw envsample.d64]) | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/ ../SID/resid-test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/envsustain.prg?format=raw envsustain.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/ ../SID/resid-test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/envtime.prg?format=raw envtime.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/ ../SID/resid-test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/noisetest.prg?format=raw noisetest.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/ ../SID/resid-test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/oscsample0-6581.prg?format=raw oscsample0-6581.prg] | |||
||6581 | |||
|| | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/ ../SID/resid-test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/oscsample0-8580.prg?format=raw oscsample0-8580.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/ ../SID/resid-test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/oscsample1-6581.prg?format=raw oscsample1-6581.prg] | |||
||6581 | |||
|| | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/ ../SID/resid-test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/resid-test/oscsample1-8580.prg?format=raw oscsample1-8580.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/ringmod/ ../SID/ringmod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/ringmod/ringmodtest.prg?format=raw ringmodtest.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/ ../SID/waveforms] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/waveforms-10-6581.prg?format=raw waveforms-10-6581.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/ ../SID/waveforms] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/waveforms-20-6581.prg?format=raw waveforms-20-6581.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/ ../SID/waveforms] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/waveforms-40-6581.prg?format=raw waveforms-40-6581.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/ ../SID/waveforms] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/waveforms-80-6581.prg?format=raw waveforms-80-6581.prg] | |||
||6581 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/ ../SID/waveforms] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/waveforms-10-8580.prg?format=raw waveforms-10-8580.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/ ../SID/waveforms] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/waveforms-20-8580.prg?format=raw waveforms-20-8580.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/ ../SID/waveforms] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/waveforms-40-8580.prg?format=raw waveforms-40-8580.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/ ../SID/waveforms] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/waveforms/waveforms-80-8580.prg?format=raw waveforms-80-8580.prg] | |||
||8580 | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/writedelay/ ../SID/writedelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/writedelay/writedelay.prg?format=raw writedelay.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wf12nsr/ ../SID/wf12nsr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wf12nsr/wf12nsr.prg?format=raw wf12nsr.prg] | |||
||6581 | |||
|| | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wf12nsr/ ../SID/wf12nsr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/wf12nsr/wf12nsr-8580.prg?format=raw wf12nsr-8580.prg] | |||
||8580 | |||
|| | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightblue;"|timeout | |||
|style="background:lightblue;"|timeout | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/defaults/ ../C64/autostart/defaults] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/defaults/test.crt?format=raw test.crt]) <small>(repeatedly press reset to check i/o register reset behaviour)</small> | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightblue;"|timeout | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightblue;"|timeout | |||
|style="background:red;"|fail | |||
|style="background:lightblue;"|timeout | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/ ../C64/carts/aracidtest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/test-ramdetect-ar.prg?format=raw test-ramdetect-ar.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/ardummy.crt?format=raw ardummy.crt]) | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/ ../C64/carts/aracidtest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/test-ramsizedetect-ar.prg?format=raw test-ramsizedetect-ar.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/ardummy.crt?format=raw ardummy.crt]) | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/ ../C64/carts/aracidtest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/test-ariotest1-ar.prg?format=raw test-ariotest1-ar.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/ardummy.crt?format=raw ardummy.crt]) | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:red;"|fail | |||
|style="background:lightgrey;"|n/a | |||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/ ../C64/carts/aracidtest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/test-ariotest2-ar.prg?format=raw test-ariotest2-ar.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/ardummy.crt?format=raw ardummy.crt]) | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/ ./selftest] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/cbm610-fail.crt?format=raw cbm610-fail.crt]) <small>(must always fail)</small> | ||
|| | || | ||
|style="background: | ||screenshot | ||
|style="background:lightgrey;"| | |style="background:lime;"|fail (ok) | ||
|style="background:lightgrey;"|n/a | |||
|} | |} | ||
=== | <small>13 tests (8 not shown)</small> | ||
=== SID === | |||
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0" | {| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0" | ||
! | | ! | | ||
! | | ! | tested | ||
! | | ! | passed | ||
! | ! | percent | ||
| | ! | | ||
|- | |- | ||
|| | ||vsid r45384 | ||
|| | ||2 | ||
| | ||2 | ||
| | ||100% | ||
||{{Progress|100|2|2|}} | |||
|- | |- | ||
|} | |} | ||
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0" | {| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0" | ||
! |Path | ! |Path | ||
! |Chip | ! |Chip | ||
! |Type | ! |Type | ||
! width="80pt" | | ! width="80pt" |vsid r45384 | ||
|} | |} | ||
<small>2 tests (2 not shown)</small> | |||
Latest revision as of 01:54, 4 December 2024
About
The VICE testprogs repository contains a testbench script, which can be used to run a lot of the existing tests automatically, which makes regression testing of the emulators much easier.
The script contains support for all emulators contained in VICE: x64, x64sc, x128, xscpu64, x64dtv, xpet, xcbm2, xcbm5x0, xvic, xplus4, vsid
... and additionally support for the following emulators:
- hoxs64 (github) (C-64)
- micro64 (C-64)
- z64k (C-64, C-128, VIC20) z64k, z128k, z20k (WIP, also has its own GUI to run the tests!)
- yace (C-64) (WIP)
- emu64 (github) (C-64) (WIP)
- denise (c64)
- Kernal64 (C-64, C-128, SCPU) (WIP)
- Frodo (C64) (WIP)
- VirtualC64 (very WIP)
- need to ask authors of: MESS (C-64, VIC20, PET), Pfau Zeh (VIC20), YAPE (Plus4), jsidplay2 (C64)
... and the following FPGA based reimplementations:
- Turbo Chameleon 64 (C-64)
- Chameleon VIC20 (VIC20)
- U64 (C-64) WIP
- need to ask authors of: FPGArcade, MiST, MiSTer
Support for the testbench can be added to any target implementing the Debugcart primary features.
If you are an emulator author or have written test programs please get in touch!
- resid-test by Leandro Nini compares reSID and reSIDfp to the results of perfect6581
- VirtualC64 Testsuite
interpreting the results
Some tests may give surprising results, in the sense that they fail although there technically is no emulation error:
- There are a bunch of tests that check "power up" properties, ie they rely on how the RAM is initialized, how I/O is initialized etc - meaning some may fail randomly when run in the testbench without powercycling (and not much can be done about that). However, quite some of these also indicate actual problems with how prg files are started. eg CIA and VIC should always be initialized with power-up values (note that simply resetting will not do this) since a surprising number of programs rely on this and that. (eg vsid/environment, C64/autostart/defaults, CIA/tod/powerup.prg). Some of the mentioned tests might even fail if not run right after a powercycle (eg C64/raminitpattern, SID/oscinit)
- Losing multicolor in the bleed area does not happen on all C64s. (see the readme). If you have a C64 that gives a different result than the references... a videocapture of that would be highly appreciated.
same for a bunch of other VICII tests, not all subtle differences are covered yet.
- ../CPU/ane and ../CPU/lax
- See the readme of the respective test. The ANE#imm and LAX#imm tests will not only check if the opcode behaves correctly, but also if the "magic constant" matches what certain realworld programs expect. Right now that means: for ANE#imm the constant should be 0xef in regular cycles, 0xee in RDY cycle. (and yes, the test will fail on some real C64s). For example with the common 0xee as magic constant, the game "spectipede" will not load from original .tap file. Yes, it will do the same on real C64s. Anyway, for emulation there is no reason why we shouldn't use the magic constant that works for most real programs. For LAX#imm the constant should be always 0xee - since (surprisingly) the game "wizball" relies in this.
interpreting the ranking
Keep in mind that the ranking below only gives a rough idea of which emulator is "better" than another, because of different reasons:
- Different emulators have different features. For example VICE emulates a wide range of configurations (different SID and VICII chips, lots of expansions and cartridges), while other emulators - like HOXS64 - emulate only one specific configuration. As a consequence a different number of tests will be used for different emulators, which skews the numbers.
- Generally the test coverage is higher for certain very specific details than for very generic things. As a consequence when an emulator gets all basic stuff right, but fails at one or two of those specific details, seemingly lots of tests will fail and again the numbers are skewed.
- The testbench rates every test equally, it has no "knowledge" about how critical certain failures are. Some tests apply only to obscure cornercases and do not really matter for questions like "will it play game XYZ?". This again may skew the numbers.
However, a "perfect" emulator should get most of the tests right, obscure or not :)
Bugs / TODOs
missing references
for a lot of VIC-II tests reference screenshots are needed
../VICII/vicii_timing/vicii_reg_timing.prg ../VICII/videomode the results are a bit questionable, we need to check the references
NTSC fixing
a lot of tests require cycle exact timing and, since they were originall written for a PAL machine, will not work on NTSC yet
../general/Lorenz-2.15/src trap16.prg ../general/Lorenz-2.15/src trap17.prg ../CPU/sha shaabsy2.prg ../CPU/sha shaabsy3.prg ../CPU/sha shazpy2.prg ../CPU/sha shazpy3.prg ../CPU/shs shsabsy2.prg ../CPU/shs shsabsy3.prg ../CPU/shxy shx-t2.prg ../CPU/shxy shx-test.prg ../CPU/shxy shxy2.prg ../CPU/shxy shyx2.prg ../interrupts/irq-ackn-bug/ ../interrupts/irqdma/ ../VICII/split-tests/modesplit modesplit.prg - check screenshots ../VICII/videomode videomode1_ntsc.prg - check screenshots ../VICII/banking/ ../VICII/border ../VICII/lp-trigger/ ../VICII/spritey/ ../VICII/dentest/ various tests broken on ntsc ../VICII/spritesplit/ ../VICII/spriteenable3/4/5 theres is a stray pixel in the output in NTSC mode (?) check against real NTSC machine
automatic variants
often for tests that are interactive, we can also build a couple variants with various settings that then can be used for automatic testing
../VICII/border/ vborder_ntsc.prg ../VICII/border/ vborder2_ntsc.prg ../VICII/border/ vborder_ntscold.prg ../VICII/border/ vborder2_ntscold.prg
misc
../drive/writeprotect/ write.d64 the test should not be able to write to the disk (and kill the dir track) maybe can run automatically if we add an option to mount d64 ro ../VICII/vspbug/ lft-safe-vsp.prg this is not really a test program. replace by a real test perhaps
../CPU/64doc/ sbx.prg runs too long to work with a 32bit timeout ../CPU/64doc/ vsbx.prg runs too long to work with a 32bit timeout
../plus256k/ test.prg fails because of broken autostart
../C64/bankio bankio.prg fails on x128, check if it also happens on real C128 and perhaps adjust the test
Lorenz-2.15/src/ciat2anew.prg properly fix for new CIA, currently a few tests are skipped on new CIA Lorenz-2.15/src/ciat2bnew.prg
Targets
last checked
the date indicated here indicates the last time it was checked for the respective emulator if a new version exists AND if so, a testrun was performed.
note that when new tests have been added, it will normally not be run again for all emulators.
version | date | note | |
---|---|---|---|
denise | git 28/11/2024 | 28.11.2024 | |
hoxs64 | 1.1.2.6 (June 11th, 2023) | 28.11.2024 | |
emu64 | git 2024/11/27 | 27.11.2024 | a bunch of drive tests fail with timeout. Strange problem related to autostarting programs reported here |
frodo | git 2024/11/25 | 25.11.2024 | |
kernal64 (c64) | 1.8.5b1 (Sep 3rd, 2023) | 27.11.2024 | |
kernal64 (c128/c64) | 1.8.5b1 (Sep 3rd, 2023) | 27.11.2024 | |
kernal64 (c128) | 1.8.5b1 (Sep 3rd, 2023) | 27.11.2024 | |
kernal64 (scpu64) | 1.8.5b1 (Sep 3rd, 2023) | 27.11.2024 | |
kernal64 (cbm2) | 1.8.5b1 (Sep 3rd, 2023) | 27.11.2024 | |
z64k (c64) | 30 November 2024 | 30.11.2024 | |
z64k (c128/c64) | 30 November 2024 | 30.11.2024 | |
z64k (vic20) | 30 November 2024 | 30.11.2024 | |
z64k (c128) | 30 November 2024 | 30.11.2024 | |
micro64 | 16/03/2018 (build 719) | 20.11.2023 | development seems stalled, a bunch of drive tests fail with timeout |
yace | 2.2.0.47 | development seems stalled, does not work for me in wine nor windows10 | |
TC64 (cartridge) | 9q (16/12/2021) | 21.11.2023 | |
TC64 (standalone) | 9q (16/12/2021) | 21.11.2023 | |
cham20 | 20201130 | 21.11.2023 | development seems stalled |
U64 | 1.42 | 25.11.2023 | lacks a bunch of features, reported here network is a bit unstable. sometimes a test fails randomly because of network problems. every so often the U64 "application" hangs completely and requires to restart the testbench. Mounting cartridges via network seems unstable. Need to manually test/merge PAL/NTSC and REU etc. |
x64sc | 3.8 r45384 | 4.12.2024 | |
x64 | 3.8 r45384 | 4.12.2024 | |
x128 (c64) | 3.8 r45384 | 4.12.2024 | |
xvic | 3.8 r45384 | 4.12.2024 | |
x128 | 3.8 r45384 | 4.12.2024 | |
xplus4 | 3.8 r45384 | 4.12.2024 | |
xpet | 3.8 r45384 | 4.12.2024 | |
x64dtv | 3.8 r45384 | 4.12.2024 | |
xscpu64 | 3.8 r45384 | 4.12.2024 | |
xcbm5x0 | 3.8 r45384 | 4.12.2024 | |
xcbm2 | 3.8 r45384 | 4.12.2024 | |
vsid | 3.8 r45384 | 4.12.2024 |
Results
C64
tested | passed | percent | ||
---|---|---|---|---|
denise git 28.11.2024 | 1305 | 1278 | 97% | 97% (1,278 of 1,305) |
x64sc r45384 | 1311 | 1234 | 94% | 94% (1,234 of 1,311) |
z64k (c64) 30 November 2024 | 1212 | 1131 | 93% | 93% (1,131 of 1,212) |
hoxs64 1.1.2.6 | 993 | 901 | 90% | 90% (901 of 993) |
TC64 9q (cartridge) | 985 | 887 | 90% | 90% (887 of 985) |
z64k (c128/c64) 30 November 2024 | 1212 | 1081 | 89% | 89% (1,081 of 1,212) |
x64 r45384 | 1311 | 1107 | 84% | 84% (1,107 of 1,311) |
x128 (c64) r45384 | 1266 | 1071 | 84% | 84% (1,071 of 1,266) |
kernal64 (c64) 1.8.5_b1 | 1215 | 936 | 77% | 77% (936 of 1,215) |
frodo 20241125 | 1079 | 840 | 77% | 77% (840 of 1,079) |
kernal64 (c128/c64) 1.8.5_b1 | 1215 | 933 | 76% | 76% (933 of 1,215) |
micro64 1.00.2018.03.16 (build 719) | 1062 | 808 | 76% | 76% (808 of 1,062) |
U64 1.43 | 1012 | 775 | 76% | 76% (775 of 1,012) |
TC64 9q (standalone) | 1182 | 868 | 73% | 73% (868 of 1,182) |
yace 2-2-0-47 | 860 | 430 | 50% | 50% (430 of 860) |
emu64 20241127 | 1142 | 499 | 43% | 43% (499 of 1,142) |
Path | Chip | Type | denise git 28.11.2024 | x64sc r45384 | hoxs64 1.1.2.6 | z64k (c64) 30 November 2024 | TC64 9q (cartridge) | z64k (c128/c64) 30 November 2024 | x128 (c64) r45384 | x64 r45384 | kernal64 (c64) 1.8.5_b1 | kernal64 (c128/c64) 1.8.5_b1 | micro64 1.00.2018.03.16 (build 719) | TC64 9q (standalone) | U64 1.43 | yace 2-2-0-47 | emu64 20241127 | frodo 20241125 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
./selftest (c64-pass.crt) | ok | ok | timeout | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | ok | ok | ||
./selftest (c64-fail.crt) (must always fail) | fail (ok) | fail (ok) | timeout | fail (ok) | fail (ok) | fail (ok) | fail (ok) | fail (ok) | fail (ok) | fail (ok) | fail (ok) | fail (ok) | n/a | timeout | fail (ok) | fail (ok) | ||
./selftest (c64-pass.crt) | screenshot | ok | ok | fail | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a | fail | ok | ok | |
./selftest (c64-fail.crt) (must always fail) | screenshot | fail (ok) | fail (ok) | fail (ok) | fail (ok) | fail (ok) | fail (ok) | fail (ok) | fail (ok) | fail (ok) | fail (ok) | fail (ok) | fail (ok) | n/a | fail (ok) | fail (ok) | fail (ok) | |
../C64/raminitpattern darkstarbbstest.prg | ok | ok | ok | fail | fail | fail | ok | ok | ok | ok | fail | ok | ok | fail | ok | ok | ||
../C64/raminitpattern typicaltest.prg | ok | ok | fail | ok | fail | ok | ok | ok | ok | ok | fail | ok | ok | ok | ok | fail | ||
../C64/autostart/basic basictest.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../C64/autostart/basic printpoint.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../C64/autostart/basic printpoint2.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../C64/autostart/defaults test.prg (load the test using "TEST" as filename) | ok | ok | fail | fail | fail | fail | ok | ok | fail | fail | fail | fail | fail | fail | fail | fail | ||
../C64/autostart/defaults test.prg (test.d64) (load the test using "TEST" as filename) | ok | ok | fail | fail | fail | fail | ok | ok | ok | fail | fail | fail | fail | fail | fail | fail | ||
../C64/bankio bankio.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../C64/openio gauntlet.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | fail | ok | ok | ok | ||
../general/banking00 banking00.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../general/Lorenz-2.15/src nopz.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../general/Lorenz-2.15/src laxay.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../general/Lorenz-2.15/src alrb.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../general/Lorenz-2.15/src arrb.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../general/Lorenz-2.15/src aneb.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../general/Lorenz-2.15/src shxay.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../general/Lorenz-2.15/src shyax.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ||
../general/Lorenz-2.15/src shsay.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../general/Lorenz-2.15/src lasay.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../general/Lorenz-2.15/src trap1.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../general/Lorenz-2.15/src trap2.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../general/Lorenz-2.15/src trap3.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../general/Lorenz-2.15/src trap4.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../general/Lorenz-2.15/src trap5.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../general/Lorenz-2.15/src trap6.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../general/Lorenz-2.15/src trap7.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../general/Lorenz-2.15/src trap8.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../general/Lorenz-2.15/src trap9.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | fail | ok | ||
../general/Lorenz-2.15/src trap10.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | fail | ok | ||
../general/Lorenz-2.15/src trap11.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../general/Lorenz-2.15/src trap12.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../general/Lorenz-2.15/src trap13.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../general/Lorenz-2.15/src trap14.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../general/Lorenz-2.15/src trap15.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | fail | ok | ||
../general/Lorenz-2.15/src trap1ane.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap2ane.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap3ane.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap4ane.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap5ane.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap6ane.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap7ane.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap8ane.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | ok | ok | ||
../general/Lorenz-2.15/src trap9ane.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap10ane.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap11ane.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap12ane.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap13ane.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | ok | ok | ||
../general/Lorenz-2.15/src trap14ane.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | ok | ok | ||
../general/Lorenz-2.15/src trap15ane.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap1lxa.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap2lxa.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap3lxa.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap4lxa.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap5lxa.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap6lxa.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap7lxa.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap8lxa.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | ok | ok | ||
../general/Lorenz-2.15/src trap9lxa.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap10lxa.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap11lxa.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap12lxa.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap13lxa.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | ok | ok | ||
../general/Lorenz-2.15/src trap14lxa.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | ok | ok | ||
../general/Lorenz-2.15/src trap15lxa.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | fail | ok | ||
../general/Lorenz-2.15/src trap16.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | fail | timeout | n/a | |
../general/Lorenz-2.15/src trap17.prg | PAL | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | ok | timeout | fail | fail | n/a | |
../general/Lorenz-2.15/src mmu.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../general/Lorenz-2.15/src cpuport.prg | ok | ok | ok | ok | ok | n/a | n/a | ok | ok | fail | fail | ok | ok | fail | ok | ok | ||
../general/Lorenz-2.15/src cputiming.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | ||
../general/Lorenz-2.15/src irq.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | timeout | fail | n/a | |
../general/Lorenz-2.15/src nmi.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a | |
../general/Lorenz-2.15/src cia1tb123.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | |
../general/Lorenz-2.15/src cia2tb123.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | |
../general/Lorenz-2.15/src cia1pb6.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../general/Lorenz-2.15/src cia1pb7.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../general/Lorenz-2.15/src cia2pb6.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../general/Lorenz-2.15/src cia2pb7.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../general/Lorenz-2.15/src cia1tab.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../general/Lorenz-2.15/src loadth.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | |
../general/Lorenz-2.15/src cnto2.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../general/Lorenz-2.15/src icr01.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | n/a | |
../general/Lorenz-2.15/src imr.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../general/Lorenz-2.15/src flipos.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | n/a | |
../general/Lorenz-2.15/src oneshot.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | |
../general/Lorenz-2.15/src cntdef.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | |
../general/Lorenz-2.15/src cia1ta.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | n/a | |
../general/Lorenz-2.15/src cia1tb.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | n/a | |
../general/Lorenz-2.15/src cia2ta.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | n/a | |
../general/Lorenz-2.15/src cia2tb.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | n/a | |
../general/Lorenz-2.15/src irqnew.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src nminew.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src cia1tb123.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src cia2tb123.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src cia1pb6.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src cia1pb7.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src cia2pb6.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src cia2pb7.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src cia1tabnew.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src loadth.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src cnto2.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src icr01new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src imrnew.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src flipos.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src oneshot.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src cntdef.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src cia1tanew.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src cia1tbnew.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src cia2tanew.prg (TODO - incomplete) | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/Lorenz-2.15/src cia2tbnew.prg (TODO - incomplete) | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../general/ram0001 test1.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | ok | ||
../general/fuxxortest test-fuxxored.prg | ok | ok | timeout | timeout | timeout | timeout | timeout | timeout | timeout | timeout | ok | timeout | timeout | timeout | timeout | timeout | ||
../general/fuxxortest ef1-nmi.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | ||
../general/fuxxortest ef2-inst1.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | fail | ok | ||
../general/fuxxortest ef2-inst2.prg | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | n/a | fail | ok | ||
../general/fuxxortest ef2-inst3.prg | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | ok | n/a | fail | fail | ||
../general/fuxxortest ef2-inst4a.prg | ok | ok | ok | ok | fail | fail | fail | fail | ok | fail | ok | fail | fail | n/a | fail | ok | ||
../general/fuxxortest ef2-inst4b.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | ||
../general/fuxxortest ef2-inst4c.prg | ok | ok | ok | ok | ok | ok | timeout | timeout | timeout | fail | ok | ok | ok | n/a | fail | timeout | ||
../CPU/Acid800 cpu_illegal.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | ||
../CPU/Acid800 cpu_timing.prg | PAL | ok | ok | fail | fail | ok | fail | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | |
../CPU/Acid800 cpu_timing_ntsc.prg (not 100% stable - rerun on failure) | NTSC | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | ok | n/a | n/a | |
../CPU/Acid800 cpu_bugs.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ||
../CPU/Acid800 cpu_clisei.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../CPU/ane ane.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ok | fail | n/a | |
../CPU/ane ane-none.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ok | fail | n/a | |
../CPU/ane ane-border.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ok | fail | n/a | |
../CPU/asap cpu_ane.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../CPU/asap cpu_decimal.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../CPU/asap cpu_shx.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | ok | ||
../CPU/cpujam cpujamf2.prg (must always timeout) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | ok (fail) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | ||
../CPU/cpujam jamirq.prg (must always timeout) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | n/a | fail | timeout (ok) | ||
../CPU/cpujam jamnmi.prg (must always timeout) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | n/a | fail | timeout (ok) | ||
../CPU/cpuport test1.prg | ok | ok | ok | ok | ok | fail | ok | ok | ok | ok | fail | ok | ok | timeout | ok | ok | ||
../CPU/cpuport (initvalue.crt) | ok | ok | timeout | ok | ok | ok | ok | ok | ok | fail | timeout | ok | n/a | timeout | fail | ok | ||
../CPU/decimalmode scanner.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | ||
../CPU/decimalmode arr00.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../CPU/decimalmode arr01.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../CPU/decimalmode arr02.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../CPU/decimalmode arr10.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../CPU/decimalmode arr11.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../CPU/decimalmode arr12.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../CPU/lax lax.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a | |
../CPU/lax lax-none.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a | |
../CPU/lax lax-border.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a | |
../CPU/sha shaabsy1.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../CPU/sha shaabsy2.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | ok | fail | fail | n/a | |
../CPU/sha shaabsy3.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | ok | fail | fail | n/a | |
../CPU/sha shaabsy4.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | ok | fail | fail | n/a | |
../CPU/sha shaabsy5.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | fail | fail | fail | n/a | |
../CPU/sha shazpy1.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../CPU/sha shazpy2.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | ok | fail | fail | n/a | |
../CPU/sha shazpy3.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | ok | fail | fail | n/a | |
../CPU/sha shazpy4.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | ok | fail | fail | n/a | |
../CPU/sha shazpy5.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | fail | fail | fail | n/a | |
../CPU/shs shsabsy1.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../CPU/shs shsabsy2.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | ok | fail | fail | n/a | |
../CPU/shs shsabsy3.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | ok | fail | fail | n/a | |
../CPU/shs shsabsy4.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | ok | fail | fail | n/a | |
../CPU/shs shsabsy5.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | fail | fail | fail | n/a | |
../CPU/shxy shx-test.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | fail | fail | ok | n/a | |
../CPU/shxy shxy1.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../CPU/shxy shxy2.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | ok | fail | ok | n/a | |
../CPU/shxy shxy3.prg | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | ok | fail | fail | ok | ||
../CPU/shxy shxy4.prg | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | ok | fail | fail | ok | ||
../CPU/shxy shxy5.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | fail | fail | fail | n/a | |
../CPU/shxy shyx1.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../CPU/shxy shyx2.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | ok | fail | ok | n/a | |
../CPU/shxy shyx3.prg | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | ok | fail | fail | ok | ||
../CPU/shxy shyx4.prg | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | ok | fail | fail | ok | ||
../CPU/shxy shyx5.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | fail | fail | fail | n/a | |
../CPU/jsrselfmod jsr.prg | fail | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | n/a | ok | ok | ||
../interrupts/branchquirk branchquirk-new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../interrupts/branchquirk branchquirk-old.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../interrupts/branchquirk branchquirk-nminew.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../interrupts/branchquirk branchquirk-nmiold.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../interrupts/cia-int cia-int-irq-new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | timeout | timeout | ok | ok | n/a | n/a | n/a | n/a | |
../interrupts/cia-int cia-int-irq.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | timeout | timeout | ok | ok | ok | timeout | fail | n/a | |
../interrupts/cia-int cia-int-nmi-new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | timeout | timeout | ok | ok | n/a | n/a | n/a | n/a | |
../interrupts/cia-int cia-int-nmi.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | timeout | timeout | ok | ok | ok | timeout | fail | n/a | |
../interrupts/irq-ackn-bug cia1new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | n/a | n/a | n/a | n/a | |
../interrupts/irq-ackn-bug cia1.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a | |
../interrupts/irq-ackn-bug cia2new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../interrupts/irq-ackn-bug cia2.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | n/a | |
../interrupts/irq-ackn-bug irq-ack-vicii.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | fail | ok | timeout | fail | n/a | |
../interrupts/irqdma nmitest6b.prg | PAL 6526 | ok | ok | n/a | ok | n/a | ok | fail | fail | fail | fail | n/a | ok | ok | n/a | fail | n/a | |
../interrupts/irqdma nmitest6b.prg | PAL 8521 | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | n/a | ok | n/a | n/a | n/a | n/a | |
../interrupts/irqdma nmitest6.prg | PAL 6526 | ok | ok | n/a | ok | n/a | ok | fail | fail | fail | fail | n/a | ok | ok | n/a | fail | n/a | |
../interrupts/irqdma nmitest6.prg | PAL 8521 | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | n/a | ok | n/a | n/a | n/a | n/a | |
../interrupts/irqdma test1b.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a | |
../interrupts/irqdma test1.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a | |
../interrupts/irqdma test2b.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a | |
../interrupts/irqdma test2.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a | |
../interrupts/irqdma test3b.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a | |
../interrupts/irqdma test3.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a | |
../interrupts/irqdma test4b.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a | |
../interrupts/irqdma test4.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a | |
../interrupts/irqdma test5b.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a | |
../interrupts/irqdma test5.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a | |
../interrupts/irqdma test6b.prg | PAL 6526 | ok | ok | n/a | ok | n/a | ok | fail | fail | fail | fail | n/a | fail | ok | n/a | fail | n/a | |
../interrupts/irqdma test6b.prg | PAL 8521 | ok | ok | ok | ok | fail | ok | fail | fail | fail | fail | n/a | fail | n/a | n/a | n/a | n/a | |
../interrupts/irqdma test6.prg | PAL | ok | ok | ok | ok | fail | ok | fail | fail | fail | fail | ok | fail | ok | fail | fail | n/a | |
../interrupts/irqdma test7b.prg | PAL | ok | ok | ok | ok | fail | ok | fail | fail | fail | fail | ok | fail | ok | fail | fail | n/a | |
../interrupts/irqdma test7.prg | PAL | ok | ok | ok | ok | fail | ok | fail | fail | fail | fail | ok | fail | ok | fail | fail | n/a | |
../interrupts/irqnmi irqnmi-new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | n/a | n/a | n/a | n/a | |
../interrupts/irqnmi irqnmi-old.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a | |
../interrupts/irqnoack ackcia.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | ok | ok | ||
../interrupts/irqnoack ackcia2.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | ok | ok | ||
../interrupts/irqnoack ackcia3.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | ok | ok | ||
../interrupts/irqnoack ackraster.prg (must always timeout) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | n/a | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | n/a | n/a | timeout (ok) | n/a | fail | timeout (ok) | ||
../CIA/CIA-AcountsB cia-b-counts-a.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | |
../CIA/CIA-AcountsB cmp-b-counts-a-old.prg | PAL 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../CIA/CIA-AcountsB cmp-b-counts-a-new.prg | PAL 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/CIA-AcountsB cia-b-counts-a_ntsc.prg | NTSC | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | ok | n/a | n/a | |
../CIA/CIA-AcountsB cmp-b-counts-a-old_ntsc.prg | NTSC 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | ok | n/a | n/a | |
../CIA/CIA-AcountsB cmp-b-counts-a-new_ntsc.prg | NTSC 8521 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | n/a | n/a | n/a | |
../CIA/cia-timer cia-timer-oldcias.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | ok | fail | ok | fail | fail | n/a | |
../CIA/cia-timer cia-timer-newcias.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/ciavarious cia3.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | ok | fail | fail | n/a | |
../CIA/ciavarious cia3a.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | ok | fail | fail | n/a | |
../CIA/ciavarious cia4.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | ok | fail | fail | n/a | |
../CIA/ciavarious cia5.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ok | ok | ok | ||
../CIA/ciavarious cia6.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | fail | ok | ||
../CIA/ciavarious cia7.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ||
../CIA/ciavarious cia8.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | fail | fail | ok | fail | fail | n/a | |
../CIA/ciavarious cia9.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ||
../CIA/ciavarious cia10.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ||
../CIA/ciavarious cia11.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ||
../CIA/ciavarious cia12.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ||
../CIA/ciavarious cia13.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ||
../CIA/ciavarious cia14.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ||
../CIA/ciavarious cia15.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../CIA/ciavarious cia3new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/ciavarious cia3anew.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/ciavarious cia4new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/ciavarious cia8new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/dd0drw dd0drw.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | ||
../CIA/dd0dtest dd0dtest.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | n/a | fail | ok | n/a | fail | n/a | |
../CIA/dd0dtest dd0dtest.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | n/a | fail | n/a | n/a | n/a | n/a | |
../CIA/irqdelay irqdelay.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../CIA/irqdelay irqdelay-new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/irqdelay irqdelay-oneshot.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../CIA/irqdelay irqdelay-oneshot-new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/irqdelay irqdelay2.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../CIA/irqdelay irqdelay2-new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/irqdelay irqdelay-cia1-4-new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/irqdelay irqdelay-cia1-4-old.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../CIA/irqdelay irqdelay-cia1-oneshot-4-new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/irqdelay irqdelay-cia1-oneshot-4-old.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../CIA/irqdelay irqdelay-cia2-oneshot-4.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../CIA/pb6pb7 main.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | n/a | ok | ok | ||
../CIA/reload0 reload0a.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ||
../CIA/reload0 reload0b.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ||
../CIA/shiftregister cia-icr-test-continues-new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/shiftregister cia-icr-test-continues-old.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../CIA/shiftregister cia-icr-test-oneshot-new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/shiftregister cia-icr-test-oneshot-old.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../CIA/shiftregister cia-sdr-load.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister cia-sdr-init.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | n/a | fail | fail | ||
../CIA/shiftregister cia-sdr-delay.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-0_7f.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-0.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | ok | fail | ||
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-1_7f.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-19.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-39.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-3.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-4485-0_7f.prg (CIA timestamp 4485 only) | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | n/a | n/a | fail | n/a | fail | n/a | fail | n/a | |
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-4485-0.prg (CIA timestamp 4485 only) | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | n/a | n/a | fail | n/a | fail | n/a | ok | n/a | |
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-4485-1_7f.prg (CIA timestamp 4485 only) | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | n/a | n/a | fail | n/a | fail | n/a | fail | n/a | |
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-4485-19.prg (CIA timestamp 4485 only) | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | n/a | n/a | fail | n/a | fail | n/a | fail | n/a | |
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-4485-39.prg (CIA timestamp 4485 only) | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | n/a | n/a | fail | n/a | fail | n/a | fail | n/a | |
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-4485-3.prg (CIA timestamp 4485 only) | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | n/a | n/a | fail | n/a | fail | n/a | fail | n/a | |
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-4485-4_7f.prg (CIA timestamp 4485 only) | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | n/a | n/a | fail | n/a | fail | n/a | fail | n/a | |
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-4_7f.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-generic-0.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | ok | fail | ||
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-generic-0_7f.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-generic-19.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-generic-1_7f.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-generic-3.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-generic-39.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia1-sdr-icr-generic-4_7f.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-0_7f.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-0.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | ok | fail | ||
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-1_7f.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-19.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-39.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-3.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-4485-0_7f.prg (CIA timestamp 4485 only) | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | fail | n/a | fail | n/a | fail | n/a | |
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-4485-0.prg (CIA timestamp 4485 only) | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | fail | n/a | fail | n/a | ok | n/a | |
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-4485-1_7f.prg (CIA timestamp 4485 only) | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | fail | n/a | fail | n/a | fail | n/a | |
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-4485-19.prg (CIA timestamp 4485 only) | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | fail | n/a | fail | n/a | fail | n/a | |
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-4485-39.prg (CIA timestamp 4485 only) | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | fail | n/a | fail | n/a | fail | n/a | |
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-4485-3.prg (CIA timestamp 4485 only) | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | fail | n/a | fail | n/a | fail | n/a | |
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-4485-4_7f.prg (CIA timestamp 4485 only) | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | fail | n/a | fail | n/a | fail | n/a | |
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-4_7f.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-generic-0.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | ok | fail | ||
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-generic-0_7f.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-generic-19.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-generic-1_7f.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-generic-3.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-generic-39.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister/cia-sdr-icr cia2-sdr-icr-generic-4_7f.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | n/a | fail | fail | ||
../CIA/shiftregister cia-sp-test-continues-new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/shiftregister cia-sp-test-continues-old.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | n/a | |
../CIA/shiftregister cia-sp-test-oneshot-new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | n/a | n/a | n/a | n/a | |
../CIA/shiftregister cia-sp-test-oneshot-old.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | fail | fail | ok | fail | fail | n/a | |
../CIA/timerbasics test_new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/timerbasics test.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../CIA/timerbasics timer_new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/timerbasics timer.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | |
../CIA/timerbasics timer_test1_new.prg | 8521 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | n/a | |
../CIA/timerbasics timer_test1.prg | 6526 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | |
../CIA/tod 0alarm.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../CIA/tod 1alarm.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../CIA/tod 4todcia1.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | ok | ok | fail | fail | ok | ||
../CIA/tod 4tod.prg | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | ok | ok | fail | fail | ok | ||
../CIA/tod 5tod.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | ok | ||
../CIA/tod 6tod.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../CIA/tod alarm-cond2.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ||
../CIA/tod alarm-cond.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ||
../CIA/tod alarm.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | ||
../CIA/tod fix-hour.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ||
../CIA/tod fix-min.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | ok | ||
../CIA/tod fix-sec.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | ok | ||
../CIA/tod fix-tsec.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | ok | ||
../CIA/tod hammerfist0.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | ok | ||
../CIA/tod hammerfist1.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | ok | ||
../CIA/tod hour-test.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | ||
../CIA/tod hzsync0.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | n/a | |
../CIA/tod hzsync1.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | n/a | |
../CIA/tod hzsync2.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | n/a | |
../CIA/tod hzsync3.prg (not 100% stable - rerun on failure) | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a | |
../CIA/tod hzsync4.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | fail | fail | fail | n/a | |
../CIA/tod hzsync5.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | n/a | |
../CIA/tod hzsync6.prg (not 100% stable - rerun on failure) | PAL | fail | ok | fail | ok | fail | ok | ok | ok | fail | fail | n/a | fail | fail | n/a | ok | n/a | |
../CIA/tod powerup.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | ok | ||
../CIA/tod read-latch.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a | |
../CIA/tod stability.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | n/a | |
../CIA/tod stability-ntsc.prg | NTSC | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | timeout | n/a | n/a | |
../CIA/tod write-stop.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | ||
../CIA/tod ampmtest.prg | ok | ok | ok | ok | n/a | ok | ok | ok | ok | ok | n/a | n/a | ok | n/a | ok | ok | ||
../VICII/banking banking.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | n/a |
../VICII/border border-250.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | ok | ok | fail | fail | n/a |
../VICII/border border-251.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ok | fail | n/a |
../VICII/border border-252.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ok | fail | n/a |
../VICII/border border-bm-idle.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | fail | fail | n/a |
../VICII/border border-bm-ysh2.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | fail | fail | n/a |
../VICII/border border-bm-ysh.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | fail | fail | n/a |
../VICII/border border-mcbm.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | fail | fail | n/a |
../VICII/border hvborder1.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/border hvborder2.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/border vborder-32-08.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | ok | ok | n/a |
../VICII/border vborder-32-09.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | ok | ok | n/a |
../VICII/border vborder-33-08.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | ok | ok | n/a |
../VICII/border vborder-33-09.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/border vborder2-21.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/border vborder2-22.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/border vborder2-35.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/border vborder2-36.prg | PAL | screenshot | ok | ok | ok | ok | fail | ok | fail | fail | fail | fail | ok | fail | fail | fail | fail | n/a |
../VICII/border vborder2-63.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | ok | ok | n/a |
../VICII/border vborder2-64.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/colorfetchbug bitmap.prg | PAL | screenshot | ok | ok | ok | ok | fail | ok | ok | ok | fail | fail | n/a | fail | fail | n/a | fail | n/a |
../VICII/colorfetchbug main.prg | PAL | screenshot | ok | ok | ok | ok | fail | ok | ok | ok | fail | fail | n/a | fail | fail | n/a | fail | n/a |
../VICII/colorfetchbug main2.prg | PAL | screenshot | ok | ok | ok | ok | fail | ok | ok | ok | fail | fail | n/a | fail | fail | n/a | fail | n/a |
../VICII/colorfetchbug main3.prg | PAL | screenshot | ok | ok | ok | ok | fail | ok | ok | ok | fail | fail | n/a | fail | fail | n/a | fail | n/a |
../VICII/colorfetchbug main4.prg | PAL | screenshot | ok | ok | ok | ok | fail | ok | ok | ok | fail | fail | n/a | fail | fail | n/a | fail | n/a |
../VICII/colorsplit colorsplit.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/D011Test disable-bad.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a |
../VICII/D011Test disable-bad_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | fail | n/a | fail | n/a | n/a |
../VICII/dentest den01-48-0.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dentest den01-48-1.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dentest den01-48-2.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dentest den01-49-0.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dentest den01-49-1.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | ok | n/a |
../VICII/dentest den01-49-2.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dentest den10-48-0.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a |
../VICII/dentest den10-48-1.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a |
../VICII/dentest den10-48-2.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | n/a |
../VICII/dentest den10-51-0.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a |
../VICII/dentest den10-51-1.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | fail | n/a |
../VICII/dentest den10-51-2.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dentest den10-51-3.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dentest denrsel-0.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a |
../VICII/dentest denrsel-1.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | fail | n/a |
../VICII/dentest denrsel-2.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | fail | n/a |
../VICII/dentest denrsel55.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dentest denrsel-63.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dentest denrsel-s0.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a |
../VICII/dentest denrsel-s1.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | fail | n/a |
../VICII/dentest denrsel-s2.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | fail | n/a |
../VICII/dentest den01-48-0_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest den01-48-1_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest den01-48-2_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest den01-49-0_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest den01-49-1_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest den01-49-2_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest den10-48-0_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest den10-48-1_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest den10-48-2_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest den10-51-0_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest den10-51-1_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest den10-51-2_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest den10-51-3_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest denrsel-0_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest denrsel-1_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest denrsel-2_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest denrsel-63_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest denrsel-s0_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest denrsel-s1_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest denrsel-s2_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dentest denrsel55_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/dmadelay test1-2a-03.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dmadelay test1-2a-04.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a |
../VICII/dmadelay test1-2a-10.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dmadelay test1-2a-11.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dmadelay test1-2a-16.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dmadelay test1-2a-17.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dmadelay test1-2a-18.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/dmadelay test2-28-05.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dmadelay test2-28-06.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a |
../VICII/dmadelay test2-28-11.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dmadelay test2-28-12.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dmadelay test2-28-16.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dmadelay test2-28-17.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/dmadelay test2-28-18.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/dmadelay test3-28-07.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a |
../VICII/dmadelay test3-28-08.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | n/a |
../VICII/dmadelay test3-28-13.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a |
../VICII/dmadelay test3-28-14.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a |
../VICII/dmadelay test3-28-18.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a |
../VICII/dmadelay test3-28-19.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a |
../VICII/dmadelay test3-28-1a.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/dmadelay test1-2e-03-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | n/a | n/a | n/a |
../VICII/dmadelay test1-2e-04-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | n/a | n/a | n/a |
../VICII/dmadelay test1-2e-10-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | n/a | n/a | n/a |
../VICII/dmadelay test1-2e-11-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | fail | n/a | n/a | n/a | n/a |
../VICII/dmadelay test1-2e-16-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | n/a | n/a | n/a |
../VICII/dmadelay test1-2e-17-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | fail | n/a | n/a | n/a | n/a |
../VICII/dmadelay test1-2e-18-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | n/a | fail | n/a | n/a | n/a | n/a |
../VICII/dmadelay test2-2c-05-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | n/a | n/a | n/a |
../VICII/dmadelay test2-2c-06-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | n/a | n/a | n/a |
../VICII/dmadelay test2-2c-11-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | n/a | n/a | n/a |
../VICII/dmadelay test2-2c-12-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | fail | n/a | n/a | n/a | n/a |
../VICII/dmadelay test2-2c-16-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | n/a | n/a | n/a |
../VICII/dmadelay test2-2c-17-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | fail | n/a | n/a | n/a | n/a |
../VICII/dmadelay test2-2c-18-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | n/a | fail | n/a | n/a | n/a | n/a |
../VICII/dmadelay test3-2c-07-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | n/a | n/a | n/a |
../VICII/dmadelay test3-2c-08-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | n/a | n/a | n/a |
../VICII/dmadelay test3-2c-13-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | n/a | n/a | n/a |
../VICII/dmadelay test3-2c-14-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | fail | n/a | n/a | n/a | n/a |
../VICII/dmadelay test3-2c-18-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | n/a | n/a | n/a |
../VICII/dmadelay test3-2c-19-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | fail | n/a | n/a | n/a | n/a |
../VICII/dmadelay test3-2c-1a-ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | n/a | fail | n/a | n/a | n/a | n/a |
../VICII/fldscroll fldscroll-20-60.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a |
../VICII/fldscroll fldscroll-21-60.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a |
../VICII/fldscroll fldscroll-22-60.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a |
../VICII/fldscroll fldscroll-29-60.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | n/a |
../VICII/fldscroll fldscroll-2A-60.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | ok | ok | fail | fail | n/a |
../VICII/fldscroll fldscroll-2B-60.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | n/a |
../VICII/flibug blackmail-ee.prg (relies on LAX magic constant being 0xee) | PAL | screenshot | ok | ok | ok | ok | ok | ok | fail | ok | fail | fail | fail | ok | ok | n/a | fail | n/a |
../VICII/flibug blackmail-fixed.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | ok | ok | n/a | fail | n/a |
../VICII/frodotests text26.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/gfxfetch gfxfetch.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | ok | fail | ok | n/a |
../VICII/gfxfetch gfxfetch_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | fail | fail | ok | ok | n/a | fail | n/a | fail | n/a | n/a |
../VICII/greydot greydot.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | fail | ok | ok | fail | fail | n/a |
../VICII/lplatency lplatency.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a | |
../VICII/lp-trigger test1.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/lp-trigger test2.prg | PAL | ok | ok | fail | fail | ok | fail | ok | ok | ok | fail | ok | fail | ok | fail | fail | n/a | |
../VICII/lp-trigger test2new.prg | PAL | ok | ok | ok | ok | fail | ok | fail | fail | fail | ok | fail | ok | fail | fail | fail | n/a | |
../VICII/phi1timing phi1timing.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | fail | fail | fail | n/a | |
../VICII/phi1timing phi1timing_ntsc.prg | NTSC | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | fail | n/a | fail | n/a | n/a | |
../VICII/phi1timing phi1timing_ntscold.prg | NTSCOLD | ok | ok | n/a | n/a | n/a | n/a | n/a | ok | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a | |
../VICII/rasterirq rasterirq_hold.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/screenpos screenpos.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/sb_sprite_fetch sbsprf24-163.prg | PAL | screenshot | ok | ok | ok | ok | fail | ok | ok | ok | fail | fail | ok | fail | ok | n/a | ok | n/a |
../VICII/sb_sprite_fetch sbsprf24-164.prg | PAL | screenshot | ok | ok | ok | ok | fail | ok | fail | fail | fail | fail | fail | fail | fail | n/a | fail | n/a |
../VICII/screenpos screenpos_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | fail | ok | ok | fail | fail | n/a | fail | n/a | fail | n/a | n/a |
../VICII/split-tests/bascan bascan.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | |
../VICII/split-tests/fetchsplit fetchsplit.prg | PAL | screenshot | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a |
../VICII/split-tests/lightpen lightpen.prg | ok | ok | ok | fail | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | ||
../VICII/split-tests/modesplit modesplit.prg | screenshot | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | |
../VICII/split-tests/spritescan spritescan.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | fail | ok | fail | fail | n/a | |
../VICII/vicii_timing vicii_reg_timing.prg | PAL | screenshot | ok | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a |
../VICII/vicii_timing vicii_reg_timing-a5.prg | PAL | screenshot | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a | fail | n/a |
../VICII/vicii_timing vicii_reg_timing-ff.prg | PAL | screenshot | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a | fail | n/a |
../VICII/videomode rmwtest.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/videomode rmwtest_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | fail | ok | ok | fail | fail | n/a | ok | n/a | fail | n/a | n/a |
../VICII/videomode videomode1.prg | PAL | screenshot | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | ok | fail | fail | fail | fail | n/a |
../VICII/videomode videomode2.prg | PAL | screenshot | ok | fail | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a |
../VICII/videomode videomode-v.prg | PAL | screenshot | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | ok | fail | fail | fail | fail | n/a |
../VICII/videomode videomode-w.prg | PAL | screenshot | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | ok | fail | fail | fail | fail | n/a |
../VICII/videomode videomode-x.prg | PAL | screenshot | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | ok | fail | fail | fail | fail | n/a |
../VICII/videomode videomode-y.prg | PAL | screenshot | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | ok | fail | fail | fail | fail | n/a |
../VICII/videomode videomode-z.prg | PAL | screenshot | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a |
../VICII/videomode videomode-v_ntsc.prg | NTSC | screenshot | ok | fail | n/a | fail | n/a | fail | fail | fail | fail | fail | n/a | fail | n/a | fail | n/a | n/a |
../VICII/videomode videomode-w_ntsc.prg | NTSC | screenshot | ok | fail | n/a | fail | n/a | fail | fail | fail | fail | fail | n/a | fail | n/a | fail | n/a | n/a |
../VICII/videomode videomode-x_ntsc.prg | NTSC | screenshot | ok | fail | n/a | fail | n/a | fail | fail | fail | fail | fail | n/a | fail | n/a | fail | n/a | n/a |
../VICII/videomode videomode-y_ntsc.prg | NTSC | screenshot | ok | fail | n/a | fail | n/a | fail | fail | fail | fail | fail | n/a | fail | n/a | fail | n/a | n/a |
../VICII/videomode videomode-z_ntsc.prg | NTSC | screenshot | ok | fail | n/a | fail | n/a | fail | fail | fail | fail | fail | n/a | fail | n/a | fail | n/a | n/a |
../VICII/videomode videomode2_ntsc.prg | NTSC | screenshot | fail | fail | n/a | fail | n/a | fail | fail | fail | fail | fail | n/a | fail | n/a | fail | n/a | n/a |
../VICII/videomode videomode1_ntsc.prg | NTSC | screenshot | ok | fail | n/a | ok | n/a | ok | fail | fail | fail | fail | n/a | fail | n/a | fail | n/a | n/a |
../VICII/videomode videomode1_ntscold.prg | NTSCOLD | screenshot | ok | ok | n/a | n/a | n/a | n/a | n/a | fail | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a |
../VICII/videomode videomode2_ntscold.prg | NTSCOLD | screenshot | ok | ok | n/a | n/a | n/a | n/a | n/a | fail | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a |
../VICII/videomode videomode-v_ntscold.prg | NTSCOLD | screenshot | ok | ok | n/a | n/a | n/a | n/a | n/a | fail | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a |
../VICII/videomode videomode-w_ntscold.prg | NTSCOLD | screenshot | ok | ok | n/a | n/a | n/a | n/a | n/a | fail | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a |
../VICII/videomode videomode-x_ntscold.prg | NTSCOLD | screenshot | ok | ok | n/a | n/a | n/a | n/a | n/a | fail | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a |
../VICII/videomode videomode-y_ntscold.prg | NTSCOLD | screenshot | ok | ok | n/a | n/a | n/a | n/a | n/a | fail | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a |
../VICII/videomode videomode-z_ntscold.prg | NTSCOLD | screenshot | ok | ok | n/a | n/a | n/a | n/a | n/a | fail | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a |
../VICII/vspbug vsp_bug.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ok | fail | ok | ||
../VICII/vsp-tester vsp-tester.prg | PAL | fail | fail | fail | ok | fail | ok | fail | fail | timeout | timeout | n/a | fail | fail | n/a | timeout | n/a | |
../VICII/vsp-tester vsp-tester-ntsc.prg | NTSC | fail | fail | n/a | ok | n/a | ok | fail | fail | timeout | timeout | n/a | fail | n/a | n/a | n/a | n/a | |
../VICII/sequencer-bug bug.prg | PAL | screenshot | ok | ok | ok | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a |
../VICII/spritebug spritebug-104.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spritebug spritebug-105.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | ok | fail | fail | n/a |
../VICII/spritebug spritebug-106.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spritecollisions sprite-gfx-collision-cycle.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | fail | ok | fail | fail | n/a | |
../VICII/spritecollisions sprite-sprite-collision-cycle.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | fail | ok | ok | fail | n/a | |
../VICII/spritecollisions sprite-sprite.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | |
../VICII/spritecollisions sprite-sprite-hi-hi.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | ||
../VICII/spritecollisions sprite-sprite-mc-hi.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | ||
../VICII/spritecollisions sprite-sprite-hi-mc.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | ||
../VICII/spritecollisions sprite-sprite-mc-mc.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | ||
../VICII/spritecollisions sprite-gfx-hi-hi.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | ||
../VICII/spritecollisions sprite-gfx-mc-hi.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | ||
../VICII/spritecollisions sprite-gfx-hi-mc.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | ||
../VICII/spritecollisions sprite-gfx-mc-mc.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | ||
../VICII/spritecrunch spritecrunch-3b-00.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ok | fail | n/a |
../VICII/spritecrunch spritecrunch-3c-00.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ok | fail | n/a |
../VICII/spritecrunch spritecrunch-3d-00.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ok | fail | n/a |
../VICII/spritecrunch spritecrunch2-07.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | ok | ok | fail | fail | n/a |
../VICII/spritecrunch spritecrunch2-08.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ok | fail | n/a |
../VICII/spritecrunch spritecrunch2-09.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ok | fail | n/a |
../VICII/spritecrunch spritecrunch2-25.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | ok | ok | ok | fail | n/a |
../VICII/spritecrunch spritecrunch2-26.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | ok | ok | ok | fail | n/a |
../VICII/spritecrunch spritecrunch2-27.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | ok | ok | ok | fail | n/a |
../VICII/spritecrunch spritecrunch2-28.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | ok | ok | ok | fail | n/a |
../VICII/spritecrunch spritecrunch2-29.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | ok | ok | ok | fail | n/a |
../VICII/spritedma d017-54.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/spritedma d017-57.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a |
../VICII/spritedma d017-54_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/spritedma d017-57_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | ok | n/a | fail | n/a | n/a |
../VICII/spriteenable spriteenable1.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spriteenable spriteenable2.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spriteenable spriteenable3.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spriteenable spriteenable4.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spriteenable spriteenable5.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spriteenable spriteenable1_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | fail | fail | fail | fail | fail | n/a | fail | n/a | fail | n/a | n/a |
../VICII/spriteenable spriteenable2_ntsc.prg | NTSC | screenshot | ok | ok | n/a | ok | n/a | fail | fail | fail | fail | fail | n/a | fail | n/a | fail | n/a | n/a |
../VICII/spriteenable spriteenable3_ntsc.prg | NTSC | screenshot | ok | fail | n/a | ok | n/a | fail | fail | fail | fail | fail | n/a | fail | n/a | fail | n/a | n/a |
../VICII/spriteenable spriteenable4_ntsc.prg | NTSC | screenshot | ok | fail | n/a | ok | n/a | fail | fail | fail | fail | fail | n/a | fail | n/a | fail | n/a | n/a |
../VICII/spriteenable spriteenable5_ntsc.prg | NTSC | screenshot | ok | fail | n/a | ok | n/a | fail | fail | fail | fail | fail | n/a | fail | n/a | fail | n/a | n/a |
../VICII/spriteenable spriteenable1_ntscold.prg | NTSCOLD | screenshot | ok | ok | n/a | n/a | n/a | n/a | n/a | fail | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a |
../VICII/spriteenable spriteenable2_ntscold.prg | NTSCOLD | screenshot | ok | ok | n/a | n/a | n/a | n/a | n/a | fail | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a |
../VICII/spriteenable spriteenable3_ntscold.prg | NTSCOLD | screenshot | ok | ok | n/a | n/a | n/a | n/a | n/a | fail | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a |
../VICII/spriteenable spriteenable4_ntscold.prg | NTSCOLD | screenshot | ok | ok | n/a | n/a | n/a | n/a | n/a | fail | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a |
../VICII/spriteenable spriteenable5_ntscold.prg | NTSCOLD | screenshot | ok | ok | n/a | n/a | n/a | n/a | n/a | fail | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a |
../VICII/spritefetchbug test-136-2a.prg | PAL | screenshot | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a |
../VICII/spritegap spritegap2.prg | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | fail | ok | fail | fail | fail | ||
../VICII/spritegap spritegap3.prg | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | fail | ok | fail | fail | fail | ||
../VICII/spritepriorities test1.prg | screenshot | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | |
../VICII/spriterestart spriterestart.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | ok | ok | fail | n/a | |
../VICII/spritesplit ss-exp-unexp-hires.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | fail | ok | ok | fail | fail | n/a |
../VICII/spritesplit ss-exp-unexp-mc.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | fail | ok | ok | fail | fail | n/a |
../VICII/spritesplit ss-hires-color.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spritesplit ss-hires-mc-exp.prg | PAL | screenshot | ok | ok | ok | ok | fail | fail | ok | ok | fail | fail | ok | fail | ok | fail | fail | n/a |
../VICII/spritesplit ss-hires-mc.prg | PAL | screenshot | ok | ok | ok | ok | fail | fail | ok | ok | fail | fail | ok | fail | ok | fail | fail | n/a |
../VICII/spritesplit ss-mc-color0.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spritesplit ss-mc-color1.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spritesplit ss-mc-color2.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spritesplit ss-mc-hires-exp.prg | PAL | screenshot | ok | ok | fail | ok | fail | fail | fail | fail | fail | fail | ok | fail | ok | fail | fail | n/a |
../VICII/spritesplit ss-mc-hires.prg | PAL | screenshot | ok | ok | fail | ok | fail | fail | fail | fail | fail | fail | ok | fail | ok | fail | fail | n/a |
../VICII/spritesplit ss-pri-exp.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spritesplit ss-pri-mc-exp.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spritesplit ss-pri-mc.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spritesplit ss-pri.prg | PAL | screenshot | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spritesplit ss-unexp-exp-hires.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spritesplit ss-unexp-exp-mc.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spritesplit ss-xpos.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../VICII/spritesteal spritesteal.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | |
../VICII/spritesteal spritesteal_ntsc.prg | NTSC | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | n/a | fail | n/a | ok | n/a | n/a | |
../VICII/spritesteal spritesteal_ntscold.prg | NTSCOLD | ok | ok | n/a | n/a | n/a | n/a | n/a | ok | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a | |
../VICII/spritevssprite spritevssprite.prg | PAL | ok | fail | ok | ok | ok | ok | fail | fail | fail | fail | fail | fail | ok | fail | fail | n/a | |
../VICII/spritex demusinterruptus.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a | |
../VICII/spritex testsuite.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | fail | ok | fail | fail | n/a | |
../VICII/spritex testsuite_ntsc.prg | NTSC | ok | ok | n/a | ok | n/a | ok | ok | ok | fail | fail | n/a | fail | n/a | fail | n/a | n/a | |
../VICII/spritex testsuite_ntscold.prg | NTSCOLD | ok | ok | n/a | n/a | n/a | n/a | n/a | ok | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a | |
../VICII/spritey spritey.prg | PAL | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a | |
../SID/busvalue busvalue.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | fail | fail | fail | ok | ||
../SID/detect detect-1-old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | |
../SID/detect detect-1-new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | ok | ok | |
../SID/detect detect-2-old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | |
../SID/detect detect-2-new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | fail | ok | |
../SID/env_test env_test_ra_0000.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | timeout | fail | fail | ||
../SID/env_test env_test_ra_0100.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | timeout | fail | fail | ||
../SID/env_test env_test_adra_1.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | timeout | fail | fail | ||
../SID/env_test env_test_adra_2.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | timeout | fail | fail | ||
../SID/env_test env_test_ar_1.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | timeout | fail | fail | ||
../SID/env_test env_test_ar_2.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | timeout | fail | fail | ||
../SID/env_test env_test_ar_3.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | timeout | fail | fail | ||
../SID/envelope testADSRDelayBug.prg | ok | ok | ok | ok | timeout | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | fail | ||
../SID/envelope testFlip00toFF.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | fail | ||
../SID/envelope testFlipFFto00.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | fail | ||
../SID/envelope lft-adsr-test.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ||
../SID/exp_counter_reset env_test_exr.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | ok | fail | ||
../SID/noiselfsrinit simple.prg | 8580 | fail | ok | fail | fail | ok | fail | ok | ok | fail | fail | n/a | fail | n/a | n/a | fail | fail | |
../SID/noiselfsrinit scan.prg | 8580 | fail | ok | fail | fail | ok | fail | ok | ok | fail | fail | n/a | fail | n/a | n/a | fail | fail | |
../SID/noiselfsrinit simple.prg | 6581 | fail | ok | n/a | fail | n/a | fail | ok | ok | fail | fail | n/a | fail | fail | n/a | fail | fail | |
../SID/noiselfsrinit scan.prg | 6581 | fail | ok | n/a | fail | n/a | fail | ok | ok | fail | fail | n/a | fail | fail | n/a | fail | fail | |
../SID/noisewriteback noise_writeback_test1-old.prg | 6581 | ok | fail | n/a | ok | n/a | ok | fail | fail | ok | ok | fail | ok | fail | fail | ok | fail | |
../SID/noisewriteback noise_writeback_test1-new.prg | 8580 | ok | fail | ok | ok | ok | ok | fail | fail | ok | ok | fail | ok | n/a | n/a | ok | fail | |
../SID/noisewriteback noise_writeback_test2-old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/noisewriteback noise_writeback_test2-new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_8_to_8_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_8_to_9_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_8_to_A_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_8_to_B_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_8_to_C_old.prg | 6581 | ok | fail | n/a | fail | n/a | fail | fail | fail | fail | fail | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_8_to_D_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_8_to_E_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_8_to_F_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_9_to_8_old.prg | 6581 | ok | fail | n/a | ok | n/a | ok | fail | fail | ok | ok | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_9_to_9_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_9_to_A_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_9_to_B_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_9_to_C_old.prg | 6581 | fail | fail | n/a | fail | n/a | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_9_to_D_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_9_to_E_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_9_to_F_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_A_to_8_old.prg | 6581 | ok | fail | n/a | ok | n/a | ok | fail | fail | ok | ok | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_A_to_9_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_A_to_A_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_A_to_B_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_A_to_C_old.prg | 6581 | fail | fail | n/a | fail | n/a | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_A_to_D_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_A_to_E_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_A_to_F_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_B_to_8_old.prg | 6581 | ok | fail | n/a | ok | n/a | ok | fail | fail | ok | ok | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_B_to_9_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_B_to_A_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_B_to_B_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_B_to_D_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_B_to_E_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_B_to_F_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_C_to_8_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_C_to_9_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_C_to_A_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_C_to_B_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_C_to_C_old.prg | 6581 | ok | fail | n/a | fail | n/a | fail | fail | fail | fail | fail | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_C_to_D_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_C_to_E_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_C_to_F_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_D_to_8_old.prg | 6581 | ok | fail | n/a | ok | n/a | ok | fail | fail | ok | ok | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_D_to_9_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_D_to_A_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_D_to_B_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_D_to_C_old.prg | 6581 | fail | fail | n/a | fail | n/a | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_D_to_D_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_D_to_E_old.prg | 6581 | fail | fail | n/a | fail | n/a | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_D_to_F_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_E_to_8_old.prg | 6581 | ok | fail | n/a | ok | n/a | ok | fail | fail | ok | ok | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_E_to_9_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_E_to_A_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_E_to_B_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_E_to_C_old.prg | 6581 | fail | fail | n/a | fail | n/a | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_E_to_E_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_E_to_F_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_F_to_8_old.prg | 6581 | ok | fail | n/a | ok | n/a | ok | fail | fail | ok | ok | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_F_to_9_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_F_to_A_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_F_to_B_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_F_to_C_old.prg | 6581 | fail | fail | n/a | fail | n/a | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_F_to_D_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_F_to_E_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_F_to_F_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | |
../SID/wb_testsuite noise_writeback_check_8_to_8_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_8_to_9_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_8_to_A_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_8_to_B_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_8_to_D_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_8_to_E_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_8_to_F_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_9_to_8_new.prg | 8580 | ok | fail | ok | ok | ok | ok | fail | fail | ok | ok | fail | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_9_to_9_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_9_to_B_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_9_to_D_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_9_to_F_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_A_to_8_new.prg | 8580 | ok | fail | ok | ok | ok | ok | fail | fail | ok | ok | fail | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_A_to_9_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_A_to_A_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_A_to_B_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_A_to_D_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_A_to_E_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_A_to_F_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_B_to_9_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_B_to_A_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_B_to_B_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_B_to_D_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_B_to_E_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_B_to_F_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_C_to_8_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_C_to_9_new.prg | 8580 | fail | ok | fail | fail | fail | fail | ok | ok | fail | fail | fail | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_C_to_A_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_C_to_E_new.prg | 8580 | fail | ok | fail | fail | ok | fail | ok | ok | fail | fail | fail | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_C_to_F_new.prg | 8580 | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_D_to_8_new.prg | 8580 | ok | fail | fail | ok | ok | ok | fail | fail | ok | ok | fail | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_D_to_9_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_D_to_B_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_D_to_D_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_D_to_F_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_E_to_8_new.prg | 8580 | ok | fail | fail | ok | ok | ok | fail | fail | ok | ok | fail | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_E_to_9_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_E_to_A_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_E_to_B_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_E_to_D_new.prg | 8580 | ok | ok | ok | ok | fail | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_E_to_E_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_E_to_F_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_F_to_9_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_F_to_A_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_F_to_B_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_F_to_D_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_F_to_E_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/wb_testsuite noise_writeback_check_F_to_F_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | n/a | fail | fail | |
../SID/osc3-wave0 osc3-wave0.prg | 6581 | ok | ok | n/a | fail | n/a | fail | ok | ok | fail | fail | ok | fail | fail | n/a | fail | fail | |
../SID/osc3-wave0 osc3-wave0-new.prg | 8580 | ok | ok | ok | fail | ok | fail | ok | ok | fail | fail | ok | fail | n/a | n/a | fail | fail | |
../SID/osc_topbit osc_topbit_test_noise_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | ok | ok | |
../SID/osc_topbit osc_topbit_test_noise_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | fail | fail | fail | timeout | fail | fail | |
../SID/osc_topbit osc_topbit_test_pulse_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | ok | ok | |
../SID/osc_topbit osc_topbit_test_pulse_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | fail | fail | fail | timeout | fail | fail | |
../SID/osc_topbit osc_topbit_test_triangle_new.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | ok | ok | |
../SID/osc_topbit osc_topbit_test_triangle_old.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | fail | fail | fail | timeout | fail | fail | |
../SID/oscinit oscinit.prg | ok | ok | ok | ok | fail | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ||
../SID/oscinit noiseinit.prg | ok | ok | fail | ok | fail | ok | ok | ok | ok | ok | fail | fail | fail | fail | ok | fail | ||
../SID/oscinit allinit.prg | ok | ok | fail | ok | fail | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | fail | ||
../SID/resid-test boundary.prg (boundary.d64) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | timeout | ||
../SID/resid-test envdelay.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | ||
../SID/resid-test envrate.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | timeout | ||
../SID/resid-test envsample.prg (envsample.d64) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | fail | timeout | fail | fail | ||
../SID/resid-test envsustain.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | ||
../SID/resid-test envtime.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | fail | ||
../SID/resid-test noisetest.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ||
../SID/resid-test oscsample0-6581.prg | 6581 | fail | ok | n/a | fail | n/a | fail | ok | ok | fail | fail | fail | fail | fail | fail | fail | fail | |
../SID/resid-test oscsample0-8580.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | n/a | n/a | fail | fail | |
../SID/resid-test oscsample1-6581.prg | 6581 | fail | ok | n/a | fail | n/a | fail | ok | ok | fail | fail | fail | fail | fail | fail | fail | fail | |
../SID/resid-test oscsample1-8580.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | n/a | n/a | fail | fail | |
../SID/ringmod ringmodtest.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | fail | ||
../SID/waveforms waveforms-10-6581.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | |
../SID/waveforms waveforms-20-6581.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | |
../SID/waveforms waveforms-40-6581.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | fail | ok | fail | fail | fail | ok | |
../SID/waveforms waveforms-80-6581.prg | 6581 | ok | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | fail | ok | fail | fail | fail | fail | |
../SID/waveforms waveforms-10-8580.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | fail | fail | |
../SID/waveforms waveforms-20-8580.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | fail | fail | |
../SID/waveforms waveforms-40-8580.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | fail | fail | |
../SID/waveforms waveforms-80-8580.prg | 8580 | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | n/a | n/a | fail | fail | |
../SID/writedelay writedelay.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../SID/wf12nsr wf12nsr.prg | 6581 | fail | ok | n/a | ok | n/a | ok | ok | ok | ok | ok | fail | timeout | fail | fail | timeout | timeout | |
../SID/wf12nsr wf12nsr-8580.prg | 8580 | fail | fail | fail | fail | ok | fail | fail | fail | fail | fail | fail | timeout | n/a | n/a | timeout | timeout | |
../C64/autostart/defaults (test.crt) (repeatedly press reset to check i/o register reset behaviour) | ok | ok | timeout | ok | ok | ok | ok | ok | ok | ok | timeout | fail | n/a | timeout | fail | timeout | ||
../C64/carts/aracidtest test-ramdetect-ar.prg (ardummy.crt) | ok | ok | fail | ok | n/a | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-ramsizedetect-ar.prg (ardummy.crt) | ok | ok | fail | ok | n/a | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | ok | n/a | ||
../C64/carts/aracidtest test-ariotest1-ar.prg (ardummy.crt) | ok | ok | fail | ok | n/a | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-ariotest2-ar.prg (ardummy.crt) | ok | ok | fail | ok | n/a | ok | ok | ok | ok | ok | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-arramtest2-ar.prg (ardummy.crt) | ok | ok | fail | ok | n/a | ok | ok | ok | ok | ok | fail | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-ramdetect-ar.prg (npdummy.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-ramsizedetect-ar.prg (npdummy.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-ariotest1-ar.prg (npdummy.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-ariotest2-ar.prg (npdummy.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-arramtest2-ar.prg (npdummy.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-ramdetect.prg (rrdummy.crt) | ok | ok | fail | ok | n/a | ok | ok | ok | n/a | n/a | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-ramsizedetect.prg (rrdummy.crt) | ok | ok | fail | ok | n/a | ok | ok | ok | n/a | n/a | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-ariotest1.prg (rrdummy.crt) | ok | ok | fail | ok | n/a | ok | ok | ok | n/a | n/a | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-ariotest2.prg (rrdummy.crt) | ok | ok | fail | ok | n/a | ok | ok | ok | n/a | n/a | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-arramtest2.prg (rrdummy.crt) | ok | ok | fail | fail | n/a | fail | ok | ok | n/a | n/a | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-ramdetect.prg (nrdummy.crt) | ok | ok | n/a | n/a | ok | n/a | ok | ok | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-ramsizedetect.prg (nrdummy.crt) | ok | ok | n/a | n/a | ok | n/a | ok | ok | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-ariotest1.prg (nrdummy.crt) | ok | ok | n/a | n/a | ok | n/a | ok | ok | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-ariotest2.prg (nrdummy.crt) | ok | ok | n/a | n/a | ok | n/a | ok | ok | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | ||
../C64/carts/aracidtest test-arramtest2-nr.prg (nrdummy.crt) | ok | ok | n/a | n/a | ok | n/a | ok | ok | n/a | n/a | fail | ok | n/a | n/a | fail | n/a | ||
../C64/carts (8kgame.crt) | ok | ok | timeout | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | ok | ok | ||
../C64/carts (16kgame.crt) | ok | ok | timeout | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | ok | ok | ||
../C64/carts (romram.crt) | ok | ok | timeout | ok | ok | ok | ok | ok | ok | ok | timeout | ok | n/a | timeout | ok | timeout | ||
../C64/carts (rr-reu.crt) | ok | ok | timeout | ok | ok | ok | ok | ok | n/a | n/a | fail | ok | n/a | timeout | fail | timeout | ||
../C64/carts/pagefox (writeram-8000.crt) | ok | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | fail | n/a | ||
../C64/carts/pagefox (writeram-a000.crt) | ok | ok | n/a | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | fail | n/a | ||
../C64/carts/pagefox (godot.crt) | ok | ok | n/a | fail | ok | fail | ok | ok | fail | fail | ok | ok | n/a | timeout | fail | n/a | ||
../C64/carts/ef-test (ef_test.crt) | ok | ok | timeout | ok | ok | ok | ok | ok | ok | ok | timeout | ok | n/a | timeout | fail | n/a | ||
../C64/carts/ef-eapi (test-eapi.crt) | ok | ok | timeout | timeout | n/a | timeout | fail | ok | timeout | timeout | n/a | n/a | n/a | n/a | timeout | n/a | ||
../C64/carts/nordicpower (artest.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower (nptest.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower (rrtest.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower (rr2test.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower (nrtest.crt) | ok | ok | n/a | n/a | ok | n/a | ok | ok | n/a | n/a | fail | ok | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower (nr2test.crt) | ok | ok | n/a | n/a | ok | n/a | ok | ok | n/a | n/a | fail | ok | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower (arramwrite.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower (npramwrite.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower (rrramwrite.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower (rr2ramwrite.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower (nrramwrite.crt) | ok | ok | n/a | n/a | ok | n/a | ok | ok | n/a | n/a | fail | ok | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower (nr2ramwrite.crt) | ok | ok | n/a | n/a | ok | n/a | ok | ok | n/a | n/a | fail | ok | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower arramwrite.prg (ardummy.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower safearramwrite.prg (ardummy.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower npramwrite.prg (npdummy.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower rrramwrite.prg (rrdummy.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower rr2ramwrite.prg (rrdummy.crt) | ok | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | ok | n/a | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower nrramwrite.prg (nrdummy.crt) | ok | ok | n/a | n/a | ok | n/a | ok | ok | n/a | n/a | fail | ok | n/a | n/a | fail | n/a | ||
../C64/carts/nordicpower nr2ramwrite.prg (nrdummy.crt) | ok | ok | n/a | n/a | ok | n/a | ok | ok | n/a | n/a | fail | ok | n/a | n/a | fail | n/a | ||
../C64/carts/retroreplay allowbank0.prg (rrdummy.crt) | ok | ok | fail | ok | ok | ok | ok | ok | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | ||
../C64/carts/retroreplay allowbank1.prg (rrdummy.crt) | ok | ok | fail | ok | ok | ok | ok | ok | n/a | n/a | ok | ok | n/a | n/a | fail | n/a | ||
../C64/carts/retroreplay writeonce.prg (rrdummy.crt) | ok | ok | ok | ok | ok | ok | ok | ok | n/a | n/a | ok | ok | n/a | n/a | ok | n/a | ||
../C64/carts/supergames (supergames.crt) | ok | ok | timeout | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a | timeout | fail | n/a | ||
../C64/carts/tamtest (tamtest.crt) | ok | ok | timeout | ok | ok | ok | ok | ok | fail | fail | timeout | ok | n/a | timeout | ok | n/a | ||
../C64/carts/ultimax (8k-vic-ef.crt) | PAL | screenshot | ok | ok | fail | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a | fail | ok | n/a |
../C64/carts/ultimax (8k-vic-rr.crt) | PAL | screenshot | ok | ok | fail | ok | ok | ok | ok | ok | n/a | n/a | fail | ok | n/a | fail | ok | n/a |
../C64/carts/ultimax (16k-vic-rr.crt) | PAL | screenshot | ok | ok | fail | ok | ok | ok | ok | ok | n/a | n/a | fail | ok | n/a | fail | ok | n/a |
../C64/carts/ultimax (16k-vic-ef.crt) | PAL | screenshot | ok | ok | fail | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a | fail | ok | n/a |
../C64/carts/ultimax (ultimax-vic-rr.crt) | PAL | screenshot | ok | ok | fail | fail | fail | fail | ok | ok | n/a | n/a | fail | fail | n/a | fail | fail | n/a |
../C64/carts/ultimax (ultimax-vic-ef.crt) | PAL | screenshot | ok | ok | fail | ok | ok | ok | ok | ok | ok | ok | fail | ok | n/a | fail | fail | n/a |
../REU/64ktransfer toc64.prg | ok | ok | ok | fail | ok | fail | ok | ok | ok | ok | n/a | ok | ok | n/a | ok | ok | ||
../REU/64ktransfer toreu.prg | ok | ok | ok | fail | ok | fail | ok | ok | ok | ok | n/a | ok | ok | n/a | ok | ok | ||
../REU/badoublewrite badoublewrite.prg | screenshot | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | fail | |
../REU/bonzai spritetiming.prg | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | fail | n/a | timeout | timeout | ||
../REU/bonzai checkchar.prg | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | ok | ok | ok | n/a | fail | fail | ||
../REU/bonzai reudetect.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | ||
../REU/cpuport cpuport.prg | ok | ok | ok | ok | ok | n/a | n/a | ok | ok | fail | n/a | ok | fail | n/a | fail | fail | ||
../REU/detectsize detectreu.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | ok | timeout | ok | ||
../REU/floatingbus floating.prg | ok | ok | n/a | n/a | fail | n/a | ok | ok | ok | ok | n/a | fail | fail | n/a | fail | ok | ||
../REU/floatingbus floating-a.prg | ok | ok | n/a | n/a | fail | n/a | ok | ok | ok | ok | n/a | fail | fail | n/a | fail | ok | ||
../REU/floatingbus floating-b.prg | ok | ok | n/a | n/a | fail | n/a | ok | ok | ok | ok | n/a | fail | fail | n/a | fail | fail | ||
../REU/floatingbus floating2.prg (must always timeout) | timeout (ok) | timeout (ok) | n/a | n/a | ok (fail) | n/a | timeout (ok) | timeout (ok) | timeout (ok) | timeout (ok) | n/a | ok (fail) | timeout (ok) | n/a | timeout (ok) | timeout (ok) | ||
../REU/floatingbus floating3a.prg | ok | ok | n/a | n/a | fail | n/a | ok | ok | ok | ok | n/a | fail | ok | n/a | fail | ok | ||
../REU/floatingbus floating3b.prg | ok | ok | n/a | n/a | fail | n/a | ok | ok | timeout | timeout | n/a | fail | timeout | n/a | fail | timeout | ||
../REU/floatingbus floating4a.prg | ok | ok | n/a | n/a | ok | n/a | ok | ok | ok | ok | n/a | ok | fail | n/a | fail | fail | ||
../REU/floatingbus floating4b.prg | ok | ok | n/a | n/a | fail | n/a | ok | ok | fail | fail | n/a | fail | fail | n/a | fail | fail | ||
../REU/floatingbus floating4c.prg | ok | ok | n/a | n/a | fail | n/a | ok | ok | ok | ok | n/a | fail | fail | n/a | fail | fail | ||
../REU/floatingbus floating4d.prg | ok | ok | n/a | n/a | fail | n/a | ok | ok | ok | ok | n/a | fail | fail | n/a | fail | fail | ||
../REU/mirrors mirrors128k.prg | ok | ok | n/a | n/a | ok | n/a | ok | ok | ok | ok | n/a | ok | ok | n/a | fail | ok | ||
../REU/mirrors mirrors256k.prg | ok | ok | n/a | n/a | ok | n/a | ok | ok | fail | fail | n/a | ok | fail | n/a | fail | fail | ||
../REU/mirrors mirrors512k.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | n/a | fail | ok | ||
../REU/mirrors mirrors1m.prg | ok | ok | n/a | n/a | ok | n/a | ok | ok | ok | ok | n/a | ok | ok | n/a | fail | n/a | ||
../REU/mirrors mirrors2m.prg | ok | ok | n/a | n/a | ok | n/a | ok | ok | ok | ok | n/a | ok | ok | n/a | fail | n/a | ||
../REU/mirrors mirrors4m.prg | ok | ok | n/a | n/a | ok | n/a | ok | ok | ok | ok | n/a | ok | ok | n/a | fail | n/a | ||
../REU/mirrors mirrors8m.prg | ok | ok | n/a | n/a | ok | n/a | ok | ok | ok | ok | n/a | ok | ok | n/a | fail | n/a | ||
../REU/mirrors mirrors16m.prg | ok | ok | n/a | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | n/a | fail | fail | ||
../REU/misc twoblocks-auto.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | fail | fail | fail | fail | ||
../REU/misc twoblocks-ff00-auto.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | fail | fail | fail | fail | ||
../REU/QuickReuTest-1.1.1 quickreu.exo.prg (use 512k REU when running this test) | ok | ok | ok | ok | fail | ok | ok | ok | ok | ok | ok | fail | fail | timeout | timeout | fail | ||
../REU/QuickReuTest-1.1.1 quickreu-test1.prg (use 512k REU when running this test) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | ok | ||
../REU/QuickReuTest-1.1.1 quickreu-test1-timing.prg (use 512k REU when running this test) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | fail | ||
../REU/QuickReuTest-1.1.1 quickreu-test2.prg (use 512k REU when running this test) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | ok | ||
../REU/QuickReuTest-1.1.1 quickreu-test2-timing.prg (use 512k REU when running this test) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | fail | ||
../REU/QuickReuTest-1.1.1 quickreu-test3.prg (use 512k REU when running this test) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | fail | ||
../REU/QuickReuTest-1.1.1 quickreu-test3-timing.prg (use 512k REU when running this test) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | fail | ||
../REU/QuickReuTest-1.1.1 quickreu-test4.prg (use 512k REU when running this test) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | timeout | fail | ||
../REU/QuickReuTest-1.1.1 quickreu-test4-timing.prg (use 512k REU when running this test) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | fail | ||
../REU/QuickReuTest-1.1.1 quickreu-test5.prg (use 512k REU when running this test) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | timeout | fail | ||
../REU/QuickReuTest-1.1.1 quickreu-test5-timing.prg (use 512k REU when running this test) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | timeout | fail | ||
../REU/QuickReuTest-1.1.1 quickreu-test6.prg (use 512k REU when running this test) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | ok | ||
../REU/QuickReuTest-1.1.1 quickreu-test6-timing.prg (use 512k REU when running this test) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | fail | ||
../REU/QuickReuTest-1.1.1 quickreu-test7.prg (use 512k REU when running this test) | ok | ok | ok | ok | fail | ok | ok | ok | ok | ok | ok | fail | ok | n/a | timeout | ok | ||
../REU/QuickReuTest-1.1.1 quickreu-test7-timing.prg (use 512k REU when running this test) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | n/a | timeout | fail | ||
../REU/QuickReuTest-1.1.1 quickreu-test8.prg (use 512k REU when running this test) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | ok | ||
../REU/QuickReuTest-1.1.1 quickreu-test8-timing.prg (use 512k REU when running this test) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | timeout | fail | ||
../REU/ramlink reuverify128k.prg | ok | ok | n/a | n/a | ok | n/a | ok | ok | ok | ok | n/a | ok | ok | n/a | timeout | ok | ||
../REU/ramlink reuverify256k.prg | ok | ok | n/a | n/a | timeout | n/a | ok | ok | ok | ok | n/a | timeout | ok | n/a | timeout | ok | ||
../REU/ramlink reuverify512k.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | n/a | ok | ok | n/a | timeout | ok | ||
../REU/ramlink reuverify1m.prg | ok | ok | n/a | n/a | ok | n/a | ok | ok | ok | ok | n/a | ok | ok | n/a | timeout | n/a | ||
../REU/ramlink reuverify2m.prg | ok | ok | n/a | n/a | ok | n/a | ok | ok | ok | ok | n/a | ok | ok | n/a | timeout | n/a | ||
../REU/ramlink reuverify4m.prg | ok | ok | n/a | n/a | ok | n/a | ok | ok | ok | ok | n/a | ok | ok | n/a | timeout | n/a | ||
../REU/ramlink reuverify8m.prg | ok | ok | n/a | n/a | ok | n/a | ok | ok | ok | ok | n/a | ok | ok | n/a | timeout | n/a | ||
../REU/reutiming reutiming.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | ||
../REU/reutiming2 a.prg | PAL | screenshot | ok | ok | fail | fail | ok | fail | fail | fail | fail | fail | fail | ok | fail | fail | fail | n/a |
../REU/reutiming2 a2.prg | PAL | screenshot | ok | ok | fail | fail | ok | fail | fail | fail | fail | fail | n/a | ok | fail | n/a | fail | n/a |
../REU/reutiming2 b.prg | PAL | screenshot | ok | ok | fail | ok | ok | fail | fail | fail | fail | fail | fail | ok | fail | fail | fail | n/a |
../REU/reutiming2 b2.prg | PAL | screenshot | ok | ok | fail | ok | ok | fail | fail | fail | fail | fail | n/a | ok | fail | n/a | fail | n/a |
../REU/reutiming2 b3.prg | PAL | screenshot | ok | ok | fail | ok | ok | fail | fail | fail | fail | fail | n/a | ok | fail | n/a | fail | n/a |
../REU/reutiming2 c.prg | PAL | screenshot | fail | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a |
../REU/reutiming2 c2.prg | PAL | screenshot | ok | fail | fail | ok | ok | fail | fail | fail | fail | fail | n/a | ok | fail | n/a | fail | n/a |
../REU/reutiming2 c3.prg | PAL | screenshot | n/a | ok | fail | n/a | fail | fail | fail | fail | n/a | n/a | n/a | fail | n/a | n/a | n/a | n/a |
../REU/reutiming2 d.prg | PAL | screenshot | ok | fail | ok | ok | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a |
../REU/reutiming2 d2.prg | PAL | screenshot | ok | fail | ok | ok | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a |
../REU/reutiming2 d3.prg | PAL | screenshot | n/a | fail | fail | n/a | fail | fail | fail | fail | n/a | n/a | n/a | fail | n/a | n/a | n/a | n/a |
../REU/reutiming2 e.prg | PAL | ok | fail | ok | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 e2.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | n/a | ok | ok | n/a | fail | n/a | |
../REU/reutiming2 e3.prg | PAL | ok | fail | ok | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 e4.prg | PAL | ok | fail | ok | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 e5.prg | PAL | ok | fail | ok | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 e6.prg | PAL | ok | fail | ok | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 f.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | n/a | ok | ok | n/a | fail | n/a | |
../REU/reutiming2 f2.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | n/a | ok | ok | n/a | fail | n/a | |
../REU/reutiming2 f3.prg | PAL | ok | fail | ok | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 f4.prg | PAL | ok | fail | ok | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 g.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | n/a | ok | ok | n/a | fail | n/a | |
../REU/reutiming2 g2.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | n/a | ok | ok | n/a | fail | n/a | |
../REU/reutiming2 g3.prg | PAL | ok | fail | ok | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 g4.prg | PAL | ok | fail | ok | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 e-m2.prg | PAL | ok | ok | fail | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 e2-m2.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | n/a | ok | ok | n/a | fail | n/a | |
../REU/reutiming2 e3-m2.prg | PAL | ok | ok | fail | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 e4-m2.prg | PAL | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 e5-m2.prg | PAL | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 e6-m2.prg | PAL | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 f-m2.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | n/a | ok | ok | n/a | fail | n/a | |
../REU/reutiming2 f2-m2.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | fail | fail | n/a | ok | ok | n/a | fail | n/a | |
../REU/reutiming2 f3-m2.prg | PAL | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 f4-m2.prg | PAL | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 g-m2.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | n/a | ok | ok | n/a | fail | n/a | |
../REU/reutiming2 g2-m2.prg | PAL | ok | ok | ok | ok | ok | ok | fail | fail | ok | ok | n/a | ok | ok | n/a | fail | n/a | |
../REU/reutiming2 g3-m2.prg | PAL | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/reutiming2 g4-m2.prg | PAL | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | n/a | |
../REU/rmw-trigger rmwtrigger-rom.prg | ok | ok | fail | ok | ok | ok | fail | fail | fail | fail | fail | ok | fail | n/a | fail | fail | ||
../REU/rmw-trigger rmwtrigger-ram.prg | ok | ok | fail | ok | ok | ok | fail | fail | fail | fail | fail | ok | fail | n/a | fail | fail | ||
../REU/xfertiming xfertiming-cmp.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../REU/xfertiming xfertiming-swap.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../REU/xfertiming xfertiming-swap2.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../REU/xfertiming xfertiming-toreu.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | fail | fail | fail | fail | ok | ok | ok | fail | fail | n/a |
../REU/xfertiming xfertiming-toc64.prg | PAL | screenshot | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | ok | ok | ok | fail | fail | n/a |
../GEO-RAM georam64.prg | ok | ok | n/a | ok | ok | ok | ok | ok | ok | ok | fail | ok | fail | timeout | ok | ok | ||
../GEO-RAM georamtest-auto.prg | ok | ok | n/a | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | timeout | ok | ok | ||
../GEO-RAM newtest-auto.prg | ok | ok | n/a | ok | ok | ok | ok | ok | ok | ok | timeout | ok | fail | timeout | ok | ok | ||
../plus60k test.prg | n/a | ok | n/a | n/a | n/a | n/a | n/a | ok | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a | ||
../plus60k checkregister.prg | n/a | ok | n/a | n/a | n/a | n/a | n/a | ok | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a | ||
../plus256k test.prg | n/a | timeout | n/a | n/a | n/a | n/a | n/a | timeout | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a | ||
../drive/1541-testsuite 1541-testsuite.prg (disks/pc64_1.d64) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ||
../drive/1541-testsuite 1541-testsuite.prg (disks/pc64_2.d64) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ||
../drive/diskid diskid1.prg (diskid.d64) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | ||
../drive/format format.prg (format.d64) ( make sure format.d64 was freshly created - the test will format it) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | fail | timeout | ok | ||
../drive/hls-protection hlstest.prg (hlstest.g64) | ok | ok | ok | ok | timeout | ok | ok | ok | fail | fail | n/a | timeout | fail | n/a | fail | timeout | ||
../drive/iecdelay iec-bus-delay-auto.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | timeout | ok | ||
../drive/inertia drive-emu-check.prg (drive-emu-check.d64) | ok | fail | fail | fail | fail | fail | fail | fail | fail | fail | n/a | fail | fail | n/a | fail | fail | ||
../drive/interrupts timera.prg (results depend on the physical properties of the drive and vary between real drives/mechs too.) | ok | ok | fail | ok | fail | fail | ok | ok | fail | fail | fail | fail | fail | fail | timeout | fail | ||
../drive/rpm rpm1.prg (rpm.d64) | PAL | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | ok | ok | fail | fail | n/a | |
../drive/rpm rpm1.prg (rpm.g64) | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | fail | n/a | |
../drive/rpm rpm1.prg | PAL | ok | ok | timeout | timeout | n/a | timeout | ok | ok | timeout | timeout | timeout | n/a | n/a | fail | n/a | n/a | |
../drive/rpm rpm2.prg (rpm.d64) | PAL | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | fail | ok | ok | n/a | fail | n/a | |
../drive/rpm rpm2.prg (rpm.g64) | PAL | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | n/a | fail | n/a | |
../drive/rpm rpm2.prg | PAL | ok | ok | timeout | timeout | n/a | timeout | ok | ok | timeout | timeout | timeout | n/a | n/a | n/a | n/a | n/a | |
../drive/rpm rpm3.prg (rpm.d64) | PAL | ok | ok | ok | ok | timeout | ok | ok | ok | fail | fail | fail | timeout | fail | n/a | fail | n/a | |
../drive/rpm rpm3.prg (rpm.g64) | PAL | ok | ok | ok | ok | timeout | ok | ok | ok | fail | ok | fail | timeout | timeout | n/a | fail | n/a | |
../drive/rpm rpm3.prg | PAL | ok | ok | timeout | ok | n/a | ok | ok | ok | timeout | timeout | timeout | n/a | n/a | n/a | n/a | n/a | |
../drive/scanner scanner35.prg (scan35.d64) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | fail | timeout | ok | ||
../drive/scanner scanner35e.prg (scan35err.d64) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | fail | timeout | ok | ||
../drive/scanner scanner40.prg (scan40.d64) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | fail | timeout | ok | ||
../drive/scanner scanner40e.prg (scan40err.d64) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | fail | timeout | ok | ||
../drive/scanner scanner42.prg (scan42.d64) | ok | ok | fail | ok | ok | ok | ok | ok | ok | ok | fail | ok | fail | fail | timeout | fail | ||
../drive/scanner scanner42e.prg (scan42err.d64) | ok | ok | fail | ok | ok | ok | ok | ok | fail | ok | fail | ok | fail | fail | timeout | fail | ||
../drive/scanner scanner35.prg (scan35.g64) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | timeout | ok | ||
../drive/scanner scanner40.prg (scan40.g64) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | timeout | ok | ||
../drive/scanner scanner42.prg (scan42.g64) | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | fail | timeout | ok | ||
../drive/skew skew1.prg (skew.d64) | ok | ok | ok | fail | ok | fail | ok | ok | ok | ok | fail | ok | ok | fail | ok | ok | ||
../drive/skew skew1.prg (skew.g64) | ok | fail | fail | fail | ok | fail | fail | fail | ok | ok | ok | ok | ok | fail | ok | ok | ||
../drive/selftest selftest.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | timeout | ok | ok | ok | timeout | ok | ||
../drive/openbus openbus.prg | ok | ok | ok | ok | ok | fail | fail | ok | fail | fail | n/a | ok | fail | n/a | timeout | fail | ||
../drive/viavarious via1.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | timeout | ok | ||
../drive/viavarious via2.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | ok | ok | fail | timeout | ok | ||
../drive/viavarious via3.prg | ok | ok | ok | ok | fail | ok | ok | ok | ok | ok | fail | fail | ok | fail | timeout | ok | ||
../drive/viavarious via3a.prg | ok | ok | ok | ok | fail | ok | ok | ok | ok | ok | fail | fail | ok | fail | timeout | ok | ||
../drive/viavarious via4.prg | ok | ok | ok | ok | fail | ok | ok | ok | ok | ok | fail | fail | ok | fail | timeout | ok | ||
../drive/viavarious via5.prg | ok | ok | ok | ok | fail | ok | ok | ok | ok | ok | fail | fail | ok | fail | timeout | ok | ||
../drive/viavarious via9.prg | ok | ok | ok | ok | fail | ok | ok | ok | ok | ok | fail | fail | ok | fail | timeout | ok | ||
../drive/viavarious via10.prg | ok | fail | ok | ok | ok | ok | fail | fail | fail | fail | timeout | ok | ok | fail | timeout | fail | ||
../drive/viavarious via11.prg | ok | fail | ok | ok | ok | ok | fail | fail | fail | fail | timeout | ok | ok | fail | timeout | fail | ||
../drive/viavarious via12.prg | ok | fail | ok | ok | ok | ok | fail | fail | fail | fail | timeout | ok | ok | fail | timeout | fail | ||
../drive/viavarious via13.prg | ok | fail | ok | ok | ok | ok | fail | fail | fail | fail | timeout | ok | ok | fail | timeout | fail | ||
../drive/viavarious via14.prg | ok | fail | ok | ok | fail | ok | fail | fail | fail | fail | n/a | fail | ok | n/a | timeout | fail | ||
../drive/viavarious via20.prg | ok | ok | ok | fail | fail | fail | ok | ok | ok | ok | n/a | fail | ok | n/a | timeout | fail | ||
../drive/viavarious via21.prg | ok | ok | ok | fail | fail | fail | ok | ok | ok | ok | n/a | fail | ok | n/a | timeout | fail | ||
../vdrive/bustakeover bustakeover.prg (bustakeover.d64) | ok | ok | ok | ok | fail | ok | ok | ok | ok | ok | ok | fail | ok | n/a | timeout | ok | ||
../vdrive/sa-check sacheck.prg (sacheck.d64) | ok | ok | ok | ok | fail | ok | ok | ok | ok | ok | ok | fail | ok | fail | timeout | ok | ||
../memory-expansions c64-dqbb-emd.prg | n/a | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a | ||
../memory-expansions c64-georam-emd.prg | ok | ok | n/a | ok | ok | ok | ok | ok | ok | ok | fail | ok | fail | fail | ok | ok | ||
../memory-expansions c64-reu-emd.prg | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | fail | timeout | ok | ||
../memory-expansions c64-ramcart-emd.prg | n/a | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a | ||
../memory-expansions c64-isepic-emd.prg | n/a | ok | n/a | n/a | n/a | n/a | ok | ok | n/a | n/a | n/a | n/a | n/a | n/a | n/a | n/a |
1448 tests (473 not shown)
VIC20
tested | passed | percent | ||
---|---|---|---|---|
xvic r45384 | 74 | 74 | 100% | 100% (74 of 74) |
z64k (vic20) 30 November 2024 | 72 | 70 | 97% | 97% (70 of 72) |
kernal64 (vic20) 1.8.5_b1 | 74 | 54 | 72% | 72% (54 of 74) |
cham20 20201130 | 45 | 21 | 46% | 46% (21 of 45) |
86 tests (29 not shown)
C128
tested | passed | percent | ||
---|---|---|---|---|
x128 r45384 | 2154 | 2115 | 98% | 98% (2,115 of 2,154) |
z64k (c128) 30 November 2024 | 2151 | 2007 | 93% | 93% (2,007 of 2,151) |
kernal64 (c128) 1.8.5_b1 | 2151 | 106 | 4% | 4% (106 of 2,151) |
2185 tests (133 not shown)
PLUS4
tested | passed | percent | ||
---|---|---|---|---|
xplus4 r45384 | 11 | 11 | 100% | 100% (11 of 11) |
Path | Chip | Type | xplus4 r45384 |
---|
17 tests (17 not shown)
PET
tested | passed | percent | ||
---|---|---|---|---|
xpet r45384 | 16 | 13 | 81% | 81% (13 of 16) |
Path | Chip | Type | xpet r45384 |
---|---|---|---|
../CRTC crtc3.prg | screenshot | fail | |
../CRTC crtc10.prg | screenshot | fail | |
../CRTC crtc13.prg | screenshot | fail |
21 tests (18 not shown)
DTV
tested | passed | percent | ||
---|---|---|---|---|
x64dtv r45384 | 303 | 247 | 81% | 81% (247 of 303) |
314 tests (258 not shown)
SCPU
tested | passed | percent | ||
---|---|---|---|---|
kernal64 (scpu64) 1.8.5_b1 | 14 | 12 | 85% | 85% (12 of 14) |
xscpu64 r45384 | 15 | 10 | 66% | 66% (10 of 15) |
Path | Chip | Type | kernal64 (scpu64) 1.8.5_b1 | xscpu64 r45384 |
---|---|---|---|---|
../SCPU/scputest scputest-0.prg | fail | fail | ||
../SCPU/scputest scputest-1.prg | fail | fail | ||
../memory-expansions c64-dqbb-emd.prg | n/a | fail | ||
../memory-expansions c64-georam-emd.prg | ok | fail | ||
../memory-expansions c64-reu-emd.prg | ok | fail |
16 tests (11 not shown)
CBM5x0
tested | passed | percent | ||
---|---|---|---|---|
xcbm5x0 r45384 | 8 | 8 | 100% | 100% (8 of 8) |
Path | Chip | Type | xcbm5x0 r45384 |
---|
12 tests (12 not shown)
CBM2
tested | passed | percent | ||
---|---|---|---|---|
xcbm2 r45384 | 8 | 8 | 100% | 100% (8 of 8) |
kernal64 (cbm2) 1.8.5_b1 | 8 | 7 | 87% | 87% (7 of 8) |
Path | Chip | Type | xcbm2 r45384 | kernal64 (cbm2) 1.8.5_b1 |
---|---|---|---|---|
./selftest cbm610-pass.prg | screenshot | ok | fail | |
./selftest (cbm610-pass.crt) | ok | n/a | ||
./selftest (cbm610-fail.crt) (must always fail) | fail (ok) | n/a | ||
./selftest (cbm610-pass.crt) | screenshot | ok | n/a | |
./selftest (cbm610-fail.crt) (must always fail) | screenshot | fail (ok) | n/a |
13 tests (8 not shown)
SID
tested | passed | percent | ||
---|---|---|---|---|
vsid r45384 | 2 | 2 | 100% | 100% (2 of 2) |
Path | Chip | Type | vsid r45384 |
---|
2 tests (2 not shown)