Testbench: Difference between revisions

From vice-emu
Jump to navigation Jump to search
(→‎C128: r36014 fixed another MMU test)
 
(144 intermediate revisions by the same user not shown)
Line 1: Line 1:
__TOC__
== About ==
The VICE [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/ testprogs repository] contains a [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench 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 VICE [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/ testprogs repository] contains a [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench testbench] script, which can be used to run a lot of the existing tests automatically, which makes regression testing of the emulators much easier.


Line 5: Line 10:
... and additionally support for the following emulators:
... and additionally support for the following emulators:


* [http://www.hoxs64.net/ hoxs64] (C-64) (WIP)
* [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://emu64.de/ emu64] (C-64) (WIP)
* [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)


need to ask authors of: MESS (C-64, VIC20, PET), Pfau Zeh (VIC20), YAPE (Plus4), jsidplay2 (C64), [https://github.com/abbruzze/kernal64 Kernal64] (C-64, C-128)
: 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 19: Line 26:
* [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!'''


[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/readme.txt readme]
[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/readme.txt readme]
Line 26: Line 37:


* [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


== Results ==
    ../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.


=== C64 ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |Path
! |
! |Type
! | version
! width="80pt" |x64 r35968
! | date
! width="80pt" |x64sc r35968
! | note
! width="80pt" |x128 (c64) r35968
|-
! width="80pt" |hoxs64 1.0.16.0
||denise              || git 19/11/2023          || 19.11.2023
! width="80pt" |z64k (c64) 20181202
|-
! width="80pt" |z64k (c128/c64) 20181202
||hoxs64             || 1.1.2.3 (March 7th, 2023)|| 19.11.2023 || Has a problem with running extra .prg files when a cartridge is mounted, reported [https://github.com/davidhorrocks/hoxs64/issues/7 here].
! width="80pt" |micro64 20180314
|-
! width="80pt" |TC64 9h
||emu64              || git 2023/11/22          || 20.11.2023 || a bunch of drive tests fail with timeout. Strange problem related to autostarting programs reported [https://github.com/ThKattanek/emu64/issues/252 here]
! width="80pt" |U64 1.0c
|-
||kernal64 (c64)     || 1.8.4b1 (Sep 3rd, 2023)  || 20.11.2023 || <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.4b1 (Sep 3rd, 2023)  || 20.11.2023
|-
|-
||[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.prg?format=raw c64-fail.prg]
||kernal64 (c128)    || 1.8.4b1 (Sep 3rd, 2023)  || 20.11.2023
||
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
|-
||[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.prg?format=raw c64-pass.prg]
||kernal64 (scpu64)  || 1.8.4b1 (Sep 3rd, 2023)  || 20.11.2023
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|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/./selftest/ ./selftest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/c64-fail.prg?format=raw c64-fail.prg]
||kernal64 (cbm2)    || 1.8.4b1 (Sep 3rd, 2023)  || 20.11.2023
||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:lightgrey;"|n/a
|-
|-
||[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.prg?format=raw c64-pass.prg]
||z64k (c64)          || 22 May 2023              || 20.11.2023 || <s>occasional hang at shutdown, [https://z64k.freeforums.net/thread/3/occasional-hang-when-shutting reported here]</s> (seems fixed)
||screenshot
|-
|style="background:lime;"|ok
||z64k (c128/c64)    || 22 May 2023              || 20.11.2023
|style="background:lime;"|ok
|-
|style="background:lime;"|ok
||z64k (vic20)        || 22 May 2023              || 20.11.2023
|style="background:lime;"|ok
|-
|style="background:lime;"|ok
||z64k (c128)        || 22 May 2023              || 20.11.2023
|style="background:lime;"|ok
|-
|style="background:lime;"|ok
||micro64            || 16/03/2018 (build 719)  || 20.11.2023 || development seems stalled, a bunch of drive tests fail with timeout
|style="background:lime;"|ok
|-
||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.7.1 r44764            || 20.11.2023
|-
||x64                || 3.7.1 r44764            || 20.11.2023
|-
||x128 (c64)          || 3.7.1 r44764            || 20.11.2023
|-
||xvic                || 3.7.1 r44764            || 20.11.2023
|-
||x128                || 3.7.1 r44764            || 20.11.2023
|-
||xplus4              || 3.7.1 r44764            || 20.11.2023
|-
||xpet                || 3.7.1 r44764            || 20.11.2023
|-
||x64dtv              || 3.7.1 r44764            || 20.11.2023
|-
||xscpu64            || 3.7.1 r44764            || 20.11.2023
|-
||xcbm5x0            || 3.7.1 r44764            || 20.11.2023
|-
||xcbm2              || 3.7.1 r44764            || 20.11.2023
|-
||vsid                || 3.7.1 r44764            || 20.11.2023
|}
 
== Results ==
=== C64 ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |
! | tested
! | passed
! | percent
! |
|-
||denise git 19.11.2023
||1269
||1241
||97%
||{{Progress|97|1241|1269|}}
|-
||x64sc r44764
||1275
||1198
||93%
||{{Progress|93|1198|1275|}}
|-
||hoxs64 1.1.2.3
||955
||881
||92%
||{{Progress|92|881|955|}}
|-
||z64k (c64) 22 May 2023
||1223
||1112
||90%
||{{Progress|90|1112|1223|}}
|-
||TC64 9q (cartridge)
||985
||887
||90%
||{{Progress|90|887|985|}}
|-
||z64k (c128/c64) 22 May 2023
||1223
||1061
||86%
||{{Progress|86|1061|1223|}}
|-
||x128 (c64) r44764
||1230
||1035
||84%
||{{Progress|84|1035|1230|}}
|-
||x64 r44764
||1275
||1069
||83%
||{{Progress|83|1069|1275|}}
|-
||kernal64 (c64) 1.8.4_b1
||1179
||902
||76%
||{{Progress|76|902|1179|}}
|-
||kernal64 (c128/c64) 1.8.4_b1
||1179
||897
||76%
||{{Progress|76|897|1179|}}
|-
||micro64 1.00.2018.03.16 (build 719)
||1062
||808
||76%
||{{Progress|76|808|1062|}}
|-
||TC64 9q (standalone)
||1182
||868
||73%
||{{Progress|73|868|1182|}}
|-
||U64 1.42
||1051
||744
||70%
||{{Progress|70|744|1051|}}
|-
||yace 2-2-0-47
||860
||430
||50%
||{{Progress|50|430|860|}}
|-
||emu64 20231120
||1106
||493
||44%
||{{Progress|44|493|1106|}}
|-
|}
 
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |Path
! |Chip
! |Type
! width="80pt" |denise git 19.11.2023
! width="80pt" |x64sc r44764
! width="80pt" |hoxs64 1.1.2.3
! width="80pt" |z64k (c64) 22 May 2023
! width="80pt" |TC64 9q (cartridge)
! width="80pt" |z64k (c128/c64) 22 May 2023
! width="80pt" |x128 (c64) r44764
! width="80pt" |x64 r44764
! width="80pt" |kernal64 (c64) 1.8.4_b1
! width="80pt" |kernal64 (c128/c64) 1.8.4_b1
! width="80pt" |micro64 1.00.2018.03.16 (build 719)
! width="80pt" |TC64 9q (standalone)
! width="80pt" |U64 1.42
! width="80pt" |yace 2-2-0-47
! width="80pt" |emu64 20231120
|-
||[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.prg?format=raw c64-fail.prg] <small>(must always fail)</small>
||
||
|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:red;"|ok (fail)
|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-fail.crt?format=raw c64-fail.crt]) <small>(must always fail)</small>
||
||
|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:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|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/cyberloadtest.prg?format=raw cyberloadtest.prg]
||[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
Line 102: Line 371:
|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/darkstarbbstest.prg?format=raw darkstarbbstest.prg]
||
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|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
|-
|-
||[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/pattern00ff.prg?format=raw pattern00ff.prg]
||[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:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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/platoontest.prg?format=raw platoontest.prg]
||
||
||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)
|-
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 137: Line 408:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|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/../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/raminitpattern/ ../C64/raminitpattern] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/raminitpattern/darkstarbbstest.prg?format=raw darkstarbbstest.prg]
||
||
||
|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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
|-
||[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]
||[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 173: Line 448:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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/printpoint2.prg?format=raw printpoint2.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;"|error
|-
|-
||[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/basic/ ../C64/autostart/basic] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/basic/basictest.prg?format=raw basictest.prg]
||
||
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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])
||
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/random/ ../C64/autostart/random] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/random/raster.prg?format=raw raster.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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/dadb.prg?format=raw dadb.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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/de00all.prg?format=raw de00all.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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/de00int.prg?format=raw de00int.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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/trivial.prg?format=raw trivial.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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 291: Line 469:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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/../crtemulation/paltest/ ../crtemulation/paltest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../crtemulation/paltest/paltest.prg?format=raw paltest.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/printpoint.prg?format=raw printpoint.prg]
|style="background:lightgrey;"|interactive
||
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../crtemulation/ ../crtemulation] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../crtemulation/emusuxX0r-crest.prg?format=raw emusuxX0r-crest.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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/start.prg?format=raw start.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 342: Line 485:
|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/ldab.prg?format=raw ldab.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;"|fail
|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/printpoint2.prg?format=raw printpoint2.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 354: Line 500:
|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/ldaz.prg?format=raw ldaz.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 365: 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
|-
|-
||[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/ldazx.prg?format=raw ldazx.prg]
||[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: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
|-
|-
||[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/ldaa.prg?format=raw ldaa.prg]
||[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: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
|-
|-
||[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/ldaax.prg?format=raw ldaax.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 402: Line 561:
|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/ldaay.prg?format=raw ldaay.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;"|fail
|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 576:
|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/ldaix.prg?format=raw ldaix.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 422: Line 581:
|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 427: Line 587:
|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/ldaiy.prg?format=raw ldaiy.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 438: Line 599:
|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/staz.prg?format=raw staz.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;"|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/nopz.prg?format=raw nopz.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 450: Line 614:
|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/stazx.prg?format=raw stazx.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 461: Line 622:
|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/staa.prg?format=raw staa.prg]
||[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/lseax.prg?format=raw lseax.prg]
||
||
||
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 474: Line 638:
|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/staax.prg?format=raw staax.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
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 486: Line 652:
|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/staay.prg?format=raw staay.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 497: Line 660:
|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/staix.prg?format=raw staix.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 510: Line 675:
|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/staiy.prg?format=raw staiy.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;"|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/arrb.prg?format=raw arrb.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 522: Line 690:
|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/ldxb.prg?format=raw ldxb.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 533: Line 698:
|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/ldxz.prg?format=raw ldxz.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 546: Line 713:
|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/ldxzy.prg?format=raw ldxzy.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;"|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/shxay.prg?format=raw shxay.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 558: Line 728:
|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/ldxa.prg?format=raw ldxa.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 569: Line 736:
|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/ldxay.prg?format=raw ldxay.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 582: Line 752:
|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/stxz.prg?format=raw stxz.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;"|fail
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 594: Line 766:
|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/stxzy.prg?format=raw stxzy.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 605: Line 774:
|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/stxa.prg?format=raw stxa.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 617: Line 788:
|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/ldyb.prg?format=raw ldyb.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 626: Line 793:
|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/../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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|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/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/ldyz.prg?format=raw ldyz.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 642: Line 812:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/ldyzx.prg?format=raw ldyzx.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 653: Line 826:
|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/ldya.prg?format=raw ldya.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 662: Line 831:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[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
|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/ldyax.prg?format=raw ldyax.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 678: Line 850:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/styz.prg?format=raw styz.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 690: Line 865:
|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/styzx.prg?format=raw styzx.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;"|fail
|style="background:red;"|fail
|-
||[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
|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/stya.prg?format=raw stya.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 714: 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
|-
|-
||[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/taxn.prg?format=raw taxn.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 726: Line 903:
|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/tayn.prg?format=raw tayn.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;"|fail
|style="background:red;"|fail
|-
||[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
|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/txan.prg?format=raw txan.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 750: Line 926:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/tyan.prg?format=raw tyan.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 762: Line 941:
|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/tsxn.prg?format=raw tsxn.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;"|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/trap9.prg?format=raw trap9.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
|-
||[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/txsn.prg?format=raw txsn.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 786: Line 964:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:red;"|fail
|-
|-
||[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/phan.prg?format=raw phan.prg]
||[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
Line 797: Line 978:
|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/plan.prg?format=raw plan.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 806: Line 983:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:red;"|fail
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|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/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/phpn.prg?format=raw phpn.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 822: Line 1,002:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/plpn.prg?format=raw plpn.prg]
||[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
Line 834: Line 1,017:
|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/inxn.prg?format=raw inxn.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;"|fail
|style="background:red;"|fail
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 846: Line 1,032:
|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/inyn.prg?format=raw inyn.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 857: Line 1,040:
|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/dexn.prg?format=raw dexn.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 870: Line 1,055:
|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/deyn.prg?format=raw deyn.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;"|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
|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/incz.prg?format=raw incz.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 894: Line 1,078:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:red;"|fail
|-
|-
||[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/inczx.prg?format=raw inczx.prg]
||[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 906: Line 1,093:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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
|-
|-
||[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/inca.prg?format=raw inca.prg]
||[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 914: Line 1,108:
|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:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/incax.prg?format=raw incax.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 926: Line 1,127:
|style="background:lime;"|ok
|style="background:lime;"|ok
|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/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/decz.prg?format=raw decz.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 941: Line 1,135:
|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/deczx.prg?format=raw deczx.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 950: Line 1,146:
|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: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/deca.prg?format=raw deca.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 966: Line 1,169:
|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/decax.prg?format=raw decax.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:lightblue;"|timeout
|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: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/asln.prg?format=raw asln.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 990: Line 1,192:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:red;"|fail
|-
|-
||[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/aslz.prg?format=raw aslz.prg]
||[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
|-
|-
||[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/aslzx.prg?format=raw aslzx.prg]
||[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: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,013: Line 1,227:
|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/asla.prg?format=raw asla.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,022: Line 1,232:
|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/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
|-
||[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/aslax.prg?format=raw aslax.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,039: Line 1,252:
|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/lsrn.prg?format=raw lsrn.prg]
||[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,050: Line 1,266:
|style="background:lime;"|ok
|style="background:lime;"|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/../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/lsrz.prg?format=raw lsrz.prg]
||[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
Line 1,062: Line 1,285:
|style="background:lime;"|ok
|style="background:lime;"|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/../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/lsrzx.prg?format=raw lsrzx.prg]
||[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,074: Line 1,304:
|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/lsra.prg?format=raw lsra.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
|-
||[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
|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/lsrax.prg?format=raw lsrax.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,095: Line 1,326:
|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/../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: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/roln.prg?format=raw roln.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,110: Line 1,345:
|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/../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/rolz.prg?format=raw rolz.prg]
||[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,122: Line 1,361:
|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/rolzx.prg?format=raw rolzx.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
|-
||[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
|-
||[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/rola.prg?format=raw rola.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,144: Line 1,383:
|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/../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
||[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/rolax.prg?format=raw rolax.prg]
||
|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,158: Line 1,401:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/rorn.prg?format=raw rorn.prg]
||[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,170: Line 1,421:
|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/../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/rorz.prg?format=raw rorz.prg]
||[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,180: Line 1,437:
|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
|-
|-
||[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/rorzx.prg?format=raw rorzx.prg]
||[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,193: Line 1,455:
|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/rora.prg?format=raw rora.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,202: Line 1,460:
|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/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
|-
||[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/rorax.prg?format=raw rorax.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,219: Line 1,480:
|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/andb.prg?format=raw andb.prg]
||[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: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,228: Line 1,494:
|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
|-
|-
||[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/andz.prg?format=raw andz.prg]
||[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: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,240: Line 1,513:
|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
|-
|-
||[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/andzx.prg?format=raw andzx.prg]
||[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: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,254: Line 1,532:
|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
|-
|-
||[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/anda.prg?format=raw anda.prg]
||[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,265: Line 1,551:
|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
|-
|-
||[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/andax.prg?format=raw andax.prg]
||[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,278: Line 1,568:
|style="background:lime;"|ok
|style="background: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/../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/anday.prg?format=raw anday.prg]
||[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,289: Line 1,586:
|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: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/andix.prg?format=raw andix.prg]
||[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,302: Line 1,606:
|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/andiy.prg?format=raw andiy.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: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,314: Line 1,622:
|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/orab.prg?format=raw orab.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,323: Line 1,628:
|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/../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
|-
||[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/oraz.prg?format=raw oraz.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,338: Line 1,647:
|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/../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/orazx.prg?format=raw orazx.prg]
||[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,348: Line 1,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
|-
||[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/oraa.prg?format=raw oraa.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,358: Line 1,666:
|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/../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
|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/oraax.prg?format=raw oraax.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,374: 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: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/oraay.prg?format=raw oraay.prg]
||[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
Line 1,386: Line 1,701:
|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/oraix.prg?format=raw oraix.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: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/cia1tabnew.prg?format=raw cia1tabnew.prg]
||8521
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,398: Line 1,717:
|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/oraiy.prg?format=raw oraiy.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,407: Line 1,723:
|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/../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
|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/eorb.prg?format=raw eorb.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,422: Line 1,742:
|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/../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/eorz.prg?format=raw eorz.prg]
||[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
Line 1,434: Line 1,758:
|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/eorzx.prg?format=raw eorzx.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: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/icr01new.prg?format=raw icr01new.prg]
||8521
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,446: Line 1,774:
|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/eora.prg?format=raw eora.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,455: Line 1,780:
|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/../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
|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/eorax.prg?format=raw eorax.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,470: Line 1,799:
|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/../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/eoray.prg?format=raw eoray.prg]
||[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 1,482: Line 1,815:
|style="background:lime;"|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
|-
|-
||[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/eorix.prg?format=raw eorix.prg]
||[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 1,493: Line 1,833:
|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/eoriy.prg?format=raw eoriy.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: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
Line 1,506: Line 1,849:
|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/clcn.prg?format=raw clcn.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,516: Line 1,856:
|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/../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
|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/secn.prg?format=raw secn.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,530: Line 1,874:
|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
|-
|-
||[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/cldn.prg?format=raw cldn.prg]
||[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
Line 1,542: Line 1,891:
|style="background:lime;"|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
|-
|-
||[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/sedn.prg?format=raw sedn.prg]
||[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
Line 1,554: Line 1,910:
|style="background:lime;"|ok
|style="background: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/../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/clin.prg?format=raw clin.prg]
||[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
Line 1,566: Line 1,929:
|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/sein.prg?format=raw sein.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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,578: Line 1,945:
|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/clvn.prg?format=raw clvn.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,587: Line 1,951:
|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
|-
||[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
|-
|-
||[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/adcb.prg?format=raw adcb.prg]
||[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
Line 1,602: Line 1,986:
|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/adcz.prg?format=raw adcz.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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|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/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/adczx.prg?format=raw adczx.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,626: Line 2,009:
|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
|-
|-
||[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/adca.prg?format=raw adca.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,635: Line 2,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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[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/adcax.prg?format=raw adcax.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,647: Line 2,040:
|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
|-
|-
||[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/adcay.prg?format=raw adcay.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,657: Line 2,057:
|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:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,662: Line 2,077:
|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/adcix.prg?format=raw adcix.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,673: Line 2,085:
|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
|-
|-
||[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/adciy.prg?format=raw adciy.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,683: Line 2,097:
|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:lightblue;"|timeout
|-
|-
||[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/sbcb.prg?format=raw sbcb.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,697: Line 2,118:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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/../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/sbcz.prg?format=raw sbcz.prg]
||[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
|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:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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/sbczx.prg?format=raw sbczx.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,722: Line 2,157:
|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/sbca.prg?format=raw sbca.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:red;"|fail
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,734: Line 2,172:
|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/sbcax.prg?format=raw sbcax.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,745: Line 2,180:
|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/sbcay.prg?format=raw sbcay.prg]
||[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
Line 1,757: Line 2,194:
|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/sbcix.prg?format=raw sbcix.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:lime;"|ok
|style="background:red;"|fail
|-
||[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
|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/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/sbciy.prg?format=raw sbciy.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,779: Line 2,215:
|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
|-
|-
||[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/cmpb.prg?format=raw cmpb.prg]
||[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
Line 1,794: Line 2,233:
|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/cmpz.prg?format=raw cmpz.prg]
||
|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
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,806: Line 2,248:
|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/cmpzx.prg?format=raw cmpzx.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,817: Line 2,256:
|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/cmpa.prg?format=raw cmpa.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,830: Line 2,271:
|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/cmpax.prg?format=raw cmpax.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;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|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/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/cmpay.prg?format=raw cmpay.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,850: Line 2,290:
|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
|-
||[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)
|-
||[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
|-
||[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
|-
||[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]
||
||
|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/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/cmpix.prg?format=raw cmpix.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: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: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/cmpiy.prg?format=raw cmpiy.prg]
||[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
Line 1,878: Line 2,385:
|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
|-
|-
||[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/cpxb.prg?format=raw cpxb.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,890: Line 2,404:
|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/cpxz.prg?format=raw cpxz.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:lightblue;"|timeout
|style="background:lime;"|ok
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,902: Line 2,419:
|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/cpxa.prg?format=raw cpxa.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,913: Line 2,427:
|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/cpyb.prg?format=raw cpyb.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,926: Line 2,442:
|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/cpyz.prg?format=raw cpyz.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;"|fail
|style="background:lime;"|ok
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,938: Line 2,457:
|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/cpya.prg?format=raw cpya.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,949: Line 2,465:
|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/bitz.prg?format=raw bitz.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,962: Line 2,480:
|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/bita.prg?format=raw bita.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;"|fail
|style="background:lime;"|ok
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,974: Line 2,495:
|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/brkn.prg?format=raw brkn.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,985: Line 2,503:
|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/rtin.prg?format=raw rtin.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 1,998: Line 2,518:
|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/jsrw.prg?format=raw jsrw.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;"|fail
|style="background:lime;"|ok
|-
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,010: Line 2,533:
|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/rtsn.prg?format=raw rtsn.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,021: Line 2,541:
|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/jmpw.prg?format=raw jmpw.prg]
||[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
Line 2,030: Line 2,552:
|style="background:lime;"|ok
|style="background:lime;"|ok
|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/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/jmpi.prg?format=raw jmpi.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,045: Line 2,560:
|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/beqr.prg?format=raw beqr.prg]
||[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,058: Line 2,575:
|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/bner.prg?format=raw bner.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;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[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
|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/bmir.prg?format=raw bmir.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,082: Line 2,598:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/bplr.prg?format=raw bplr.prg]
||[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,089: Line 2,608:
|style="background:lime;"|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,094: Line 2,617:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/bcsr.prg?format=raw bcsr.prg]
||[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,103: Line 2,629:
|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:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/bccr.prg?format=raw bccr.prg]
||[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,115: Line 2,648:
|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:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/bvsr.prg?format=raw bvsr.prg]
||[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,127: Line 2,667:
|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
|-
|-
||[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/bvcr.prg?format=raw bvcr.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,142: Line 2,689:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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
|-
|-
||[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/nopn.prg?format=raw nopn.prg]
||[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,149: Line 2,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:red;"|fail
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,154: Line 2,712:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/nopb.prg?format=raw nopb.prg]
||[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,162: Line 2,723:
|style="background: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
|-
|-
||[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]
||[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,174: Line 2,742:
|style="background: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
|-
|-
||[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/nopzx.prg?format=raw nopzx.prg]
||[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,187: Line 2,762:
|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
|-
|-
||[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/nopa.prg?format=raw nopa.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,202: 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:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/nopax.prg?format=raw nopax.prg]
||[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,209: Line 2,798:
|style="background:lime;"|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,214: Line 2,807:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/asoz.prg?format=raw asoz.prg]
||[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,223: Line 2,819:
|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:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/asozx.prg?format=raw asozx.prg]
||[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,234: Line 2,837:
|style="background: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
|-
|-
||[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/asoa.prg?format=raw asoa.prg]
||[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,247: Line 2,857:
|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
|-
|-
||[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/asoax.prg?format=raw asoax.prg]
||[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,257: Line 2,874:
|style="background:lime;"|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: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/asoay.prg?format=raw asoay.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,272: Line 2,896:
|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/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/asoix.prg?format=raw asoix.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,283: Line 2,902:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[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
|-
||[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/asoiy.prg?format=raw asoiy.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:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,297: Line 2,921:
|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/rlaz.prg?format=raw rlaz.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,306: Line 2,932:
|style="background: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
|-
|-
||[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/rlazx.prg?format=raw rlazx.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,318: Line 2,951:
|style="background: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
|-
|-
||[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/rlaa.prg?format=raw rlaa.prg]
||[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 2,331: Line 2,971:
|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
|-
|-
||[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/rlaax.prg?format=raw rlaax.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,346: Line 2,993:
|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/rlaay.prg?format=raw rlaay.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:red;"|fail
|style="background:red;"|fail
|-
||[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
Line 2,358: Line 3,009:
|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/../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/rlaix.prg?format=raw rlaix.prg]
|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
Line 2,369: Line 3,016:
|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/rlaiy.prg?format=raw rlaiy.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,378: Line 3,027:
|style="background: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
|-
|-
||[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/lsez.prg?format=raw lsez.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,390: Line 3,046:
|style="background: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
|-
|-
||[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/lsezx.prg?format=raw lsezx.prg]
||[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 2,403: Line 3,066:
|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
|-
|-
||[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/lsea.prg?format=raw lsea.prg]
||[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 2,418: Line 3,089:
|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/lseax.prg?format=raw lseax.prg]
||
|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
|-
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,430: Line 3,104:
|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/lseay.prg?format=raw lseay.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,439: Line 3,110:
|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/../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
||[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/lseix.prg?format=raw lseix.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,454: Line 3,131:
|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/../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/lseiy.prg?format=raw lseiy.prg]
||[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 2,466: Line 3,145:
|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/rraz.prg?format=raw rraz.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: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-nmiold.prg?format=raw branchquirk-nmiold.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: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/rrazx.prg?format=raw rrazx.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,490: Line 3,169:
|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/../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/rraa.prg?format=raw rraa.prg]
||[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 2,500: 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: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
|-
|-
||[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/rraax.prg?format=raw rraax.prg]
||[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: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: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:lightblue;"|timeout
|style="background:red;"|fail
|-
|-
||[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/rraay.prg?format=raw rraay.prg]
||[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
Line 2,525: Line 3,220:
|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
|-
||[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/rraix.prg?format=raw rraix.prg]
||
|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/../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: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: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:lightblue;"|timeout
|style="background:red;"|fail
|-
|-
||[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/rraiy.prg?format=raw rraiy.prg]
||[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
Line 2,548: Line 3,257:
|style="background: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
|-
|-
||[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/dcmz.prg?format=raw dcmz.prg]
||[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: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
|-
|-
||[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/dcmzx.prg?format=raw dcmzx.prg]
||[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
Line 2,574: Line 3,297:
|style="background:lime;"|ok
|style="background: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/../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/dcma.prg?format=raw dcma.prg]
||[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: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 2,586: Line 3,320:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/dcmax.prg?format=raw dcmax.prg]
||[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
Line 2,595: Line 3,332:
|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:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:red;"|fail
|-
|-
||[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/dcmay.prg?format=raw dcmay.prg]
||[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: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:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[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
|-
||[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/dcmix.prg?format=raw dcmix.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:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|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/../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: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:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[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/dcmiy.prg?format=raw dcmiy.prg]
||[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
Line 2,631: Line 3,408:
|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: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/../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/insz.prg?format=raw insz.prg]
||[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
Line 2,643: Line 3,427:
|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
|-
|-
||[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/inszx.prg?format=raw inszx.prg]
||[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
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,655: Line 3,446:
|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
|-
|-
||[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/insa.prg?format=raw insa.prg]
||[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
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,667: Line 3,465:
|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
|-
|-
||[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/insax.prg?format=raw insax.prg]
||[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 2,679: Line 3,484:
|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
|-
|-
||[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/insay.prg?format=raw insay.prg]
||[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 2,691: Line 3,503:
|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
|-
|-
||[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/insix.prg?format=raw insix.prg]
||[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 2,703: Line 3,522:
|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
|-
|-
||[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/insiy.prg?format=raw insiy.prg]
||[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
Line 2,715: Line 3,541:
|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
|-
|-
||[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/laxz.prg?format=raw laxz.prg]
||[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 2,727: Line 3,560:
|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
|-
|-
||[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/laxzy.prg?format=raw laxzy.prg]
||[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
Line 2,739: Line 3,579:
|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
|-
|-
||[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/laxa.prg?format=raw laxa.prg]
||[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
Line 2,751: Line 3,598:
|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
|-
|-
||[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]
||[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 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: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:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[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
|-
|-
||[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/laxix.prg?format=raw laxix.prg]
||[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
Line 2,773: Line 3,653:
|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:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|-
|-
||[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/laxiy.prg?format=raw laxiy.prg]
||[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
Line 2,785: Line 3,672:
|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:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|-
|-
||[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/axsz.prg?format=raw axsz.prg]
||[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
Line 2,797: Line 3,691:
|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:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|-
|-
||[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/axszy.prg?format=raw axszy.prg]
||[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
Line 2,812: Line 3,713:
|style="background: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
|-
|-
||[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/axsa.prg?format=raw axsa.prg]
||[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
||
||
|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
|-
|-
||[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/axsix.prg?format=raw axsix.prg]
||[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]
||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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,838: Line 3,756:
|style="background:lime;"|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/../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]
||[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
Line 2,850: Line 3,772:
|style="background:lime;"|ok
|style="background: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/../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]
||[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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,860: Line 3,792:
|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: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/aneb.prg?format=raw aneb.prg]
||[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]
||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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,873: Line 3,811:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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/lxab.prg?format=raw lxab.prg]
||
|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
|-
||[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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,886: Line 3,830:
|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
|-
|-
||[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/sbxb.prg?format=raw sbxb.prg]
||[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
||
||
|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:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/shaay.prg?format=raw shaay.prg]
||[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
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,909: Line 3,866:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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
|-
|-
||[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/shaiy.prg?format=raw shaiy.prg]
||[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: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,921: Line 3,887:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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 2,932: Line 3,907:
|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;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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 2,945: Line 3,925:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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 2,957: Line 3,942:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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/ancb.prg?format=raw ancb.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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[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
|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/lasay.prg?format=raw lasay.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 2,978: Line 3,961:
|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/../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/sbcb-eb.prg?format=raw sbcb-eb.prg]
||[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 2,994: Line 3,981:
|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/trap1.prg?format=raw trap1.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,005: Line 3,986:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|-
|-
||[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]
||[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:red;"|error
|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:red;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,029: Line 4,017:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|-
|-
||[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]
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,053: Line 4,036:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,065: Line 4,043:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|-
|-
||[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]
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,077: Line 4,055:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,089: Line 4,062:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|-
|-
||[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]
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,101: Line 4,074:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,113: Line 4,081:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|-
|-
||[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]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,125: Line 4,093:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,137: Line 4,100:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|-
|-
||[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]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,149: Line 4,112:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,161: Line 4,119:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|-
|-
||[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]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,173: Line 4,131:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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:red;"|error
|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/trap17.prg?format=raw trap17.prg]
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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/branchwrap.prg?format=raw branchwrap.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,207: Line 4,155:
|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/../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
|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/mmufetch.prg?format=raw mmufetch.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,222: Line 4,174:
|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/../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]
||[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
Line 3,234: Line 4,190:
|style="background:lime;"|ok
|style="background: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/../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]
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|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: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/dd0drw/ ../CIA/dd0drw] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/dd0drw/dd0drw.prg?format=raw dd0drw.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,258: Line 4,225:
|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]
||
|style="background: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: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
|-
|-
||[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]
||[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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
Line 3,280: Line 4,246:
|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:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[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]
||[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
|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 3,294: Line 4,265:
|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
|-
|-
||[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]
||[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:lightgrey;"|n/a
Line 3,306: Line 4,286:
|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/cia1pb6.prg?format=raw cia1pb6.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:red;"|fail
|-
||[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
|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/cia1pb7.prg?format=raw cia1pb7.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 3,330: Line 4,307:
|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/../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]
||[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:lightgrey;"|n/a
Line 3,342: Line 4,324:
|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/cia2pb7.prg?format=raw cia2pb7.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:red;"|fail
|-
||[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
|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/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]
||
|style="background: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 3,366: Line 4,345:
|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/../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]
||[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:lightgrey;"|n/a
Line 3,378: Line 4,362:
|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/cnto2.prg?format=raw cnto2.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:red;"|fail
|-
||[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
|-
||[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]
||
|style="background: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 3,402: Line 4,383:
|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/../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]
||[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
|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 3,414: Line 4,398:
|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
|-
|-
||[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]
||[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: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,424: Line 4,417:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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/oneshot.prg?format=raw oneshot.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
|style="background:red;"|fail
|-
||[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
|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/cntdef.prg?format=raw cntdef.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
|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;"|error
|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/cia1ta.prg?format=raw cia1ta.prg]
||[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: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,460: Line 4,455:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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/cia1tb.prg?format=raw cia1tb.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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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/cia2ta.prg?format=raw cia2ta.prg]
||[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]
||
||
||
|style="background: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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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/cia2tb.prg?format=raw cia2tb.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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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/irqnew.prg?format=raw irqnew.prg]
||[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
Line 3,507: Line 4,491:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightgrey;"|n/a
|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/nminew.prg?format=raw nminew.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,521: Line 4,512:
|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/cia1tb123.prg?format=raw cia1tb123.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;"|fail
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,533: Line 4,529:
|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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,545: Line 4,537:
|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
|-
|-
||[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]
||[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
Line 3,557: Line 4,554:
|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/cia1pb7.prg?format=raw cia1pb7.prg]
||[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: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,569: Line 4,571:
|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/cia2pb6.prg?format=raw cia2pb6.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;"|fail
|-
||[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
|style="background: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/cia2pb7.prg?format=raw cia2pb7.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,593: Line 4,592:
|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/cia1tabnew.prg?format=raw cia1tabnew.prg]
||[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: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,605: Line 4,610:
|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:red;"|fail
|-
|-
||[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]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,617: Line 4,626:
|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
|-
|-
||[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]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,628: Line 4,644:
|style="background: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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[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]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,640: 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: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:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[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]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,653: Line 4,683:
|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
|-
|-
||[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]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,664: Line 4,701:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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: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/oneshot.prg?format=raw oneshot.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,677: Line 4,721:
|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
|-
|-
||[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]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,689: Line 4,740:
|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
|-
|-
||[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]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,700: Line 4,758:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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
|-
|-
||[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]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,712: Line 4,777:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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
|-
|-
||[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]
||[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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|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]
||
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|-
||[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/quicktest.prg?format=raw quicktest.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
||
||
|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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/ ../general] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/fuxxortest.d64?format=raw fuxxortest.d64]
||[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>
|style="background:lightgrey;"|interactive
||6526
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
||
||
|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:lime;"|ok
|style="background:red;"|error
|-
|-
||[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_anx.prg?format=raw cpu_anx.prg]
||[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:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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
|-
|-
||[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]
||[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:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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
|-
|-
||[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_las.prg?format=raw cpu_las.prg]
||[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:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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
|-
|-
||[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]
||[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:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[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_decimal.prg?format=raw cpu_decimal.prg]
||[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:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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
|-
|-
||[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_flags.prg?format=raw cpu_flags.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,857: Line 4,930:
|style="background: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:red;"|fail
|-
|-
||[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]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,869: Line 4,949:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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
|-
|-
||[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_insn.prg?format=raw cpu_insn.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,881: Line 4,968:
|style="background: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:red;"|fail
|-
|-
||[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]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,893: Line 4,987:
|style="background: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:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/bclark/ ../CPU/bclark] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/bclark/decimalmode.prg?format=raw decimalmode.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,905: Line 5,006:
|style="background: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:red;"|fail
|-
|-
||[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]
||[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
Line 3,914: Line 5,022:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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/?format=raw ] ([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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|style="background:red;"|fail
|style="background:red;"|error
|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
|-
|-
||[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]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,941: 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: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
|-
|-
||[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/adc00.prg?format=raw adc00.prg]
||[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
Line 3,953: Line 5,063:
|style="background: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:red;"|fail
|-
|-
||[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/adc01.prg?format=raw adc01.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,965: Line 5,082:
|style="background: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:red;"|fail
|-
|-
||[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/adc02.prg?format=raw adc02.prg]
||[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
Line 3,977: Line 5,101:
|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
|-
|-
||[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/adc10.prg?format=raw adc10.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 3,989: Line 5,120:
|style="background: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:red;"|fail
|-
|-
||[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/adc11.prg?format=raw adc11.prg]
||[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
Line 4,001: Line 5,139:
|style="background: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:red;"|fail
|-
|-
||[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/adc12.prg?format=raw adc12.prg]
||[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
Line 4,013: Line 5,158:
|style="background: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:red;"|fail
|-
|-
||[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/sbc00.prg?format=raw sbc00.prg]
||[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]
||
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,025: Line 5,177:
|style="background: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:red;"|fail
|-
|-
||[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/sbc01.prg?format=raw sbc01.prg]
||[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:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|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
|-
|-
||[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/sbc02.prg?format=raw sbc02.prg]
||[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: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: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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
|-
||[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/sbc10.prg?format=raw sbc10.prg]
||[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: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:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|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
|-
|-
||[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/sbc11.prg?format=raw sbc11.prg]
||[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:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|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
|-
|-
||[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/sbc12.prg?format=raw sbc12.prg]
||[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
||
||
|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:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|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
|-
|-
||[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]
||[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:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|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
|-
|-
||[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]
||[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
||
||
|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:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|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
|-
|-
||[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]
||[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 4,121: Line 5,329:
|style="background: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:red;"|fail
|-
|-
||[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]
||[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
Line 4,133: Line 5,348:
|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
|-
|-
||[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]
||[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 4,145: Line 5,367:
|style="background: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:red;"|fail
|-
|-
||[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]
||[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
Line 4,157: Line 5,386:
|style="background: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:red;"|fail
|-
|-
||[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/sbcEB00.prg?format=raw sbcEB00.prg]
||[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
Line 4,169: Line 5,405:
|style="background: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:red;"|fail
|-
|-
||[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/sbcEB01.prg?format=raw sbcEB01.prg]
||[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
Line 4,181: Line 5,424:
|style="background: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:red;"|fail
|-
|-
||[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/sbcEB02.prg?format=raw sbcEB02.prg]
||[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
Line 4,193: Line 5,443:
|style="background: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:red;"|fail
|-
|-
||[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/sbcEB10.prg?format=raw sbcEB10.prg]
||[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
Line 4,205: Line 5,462:
|style="background: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:red;"|fail
|-
|-
||[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/sbcEB11.prg?format=raw sbcEB11.prg]
||[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
Line 4,218: Line 5,482:
|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/decimalmode/ ../CPU/decimalmode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/sbcEB12.prg?format=raw sbcEB12.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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|-
||[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:lime;"|ok
|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/../CPU/decimalmode/ ../CPU/decimalmode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/isc00.prg?format=raw isc00.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,242: Line 5,505:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/isc01.prg?format=raw isc01.prg]
||[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
Line 4,254: Line 5,520:
|style="background: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
|-
|-
||[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/isc02.prg?format=raw isc02.prg]
||[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: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,265: Line 5,540:
|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
|-
|-
||[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/isc03.prg?format=raw isc03.prg]
||[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
Line 4,278: Line 5,558:
|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/decimalmode/ ../CPU/decimalmode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/isc10.prg?format=raw isc10.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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|-
||[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: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
|-
||[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/isc11.prg?format=raw isc11.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,299: Line 5,582:
|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/../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
|-
||[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/isc12.prg?format=raw isc12.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,314: Line 5,599:
|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/../CPU/decimalmode/ ../CPU/decimalmode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/isc13.prg?format=raw isc13.prg]
||[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: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,326: Line 5,617:
|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/decimalmode/ ../CPU/decimalmode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/rra00.prg?format=raw rra00.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
|-
||[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
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,338: Line 5,631:
|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/decimalmode/ ../CPU/decimalmode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/rra01.prg?format=raw rra01.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,347: Line 5,637:
|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/../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
||
|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
||[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/rra02.prg?format=raw rra02.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,362: Line 5,658:
|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/../CPU/decimalmode/ ../CPU/decimalmode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/decimalmode/rra03.prg?format=raw rra03.prg]
||[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 4,374: Line 5,672:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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
|-
|-
||[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/rra10.prg?format=raw rra10.prg]
||[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 4,386: Line 5,691:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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
|-
|-
||[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/rra11.prg?format=raw rra11.prg]
||[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
Line 4,396: Line 5,708:
|style="background: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
|-
|-
||[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/rra12.prg?format=raw rra12.prg]
||[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
Line 4,408: Line 5,727:
|style="background: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
|-
|-
||[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/rra13.prg?format=raw rra13.prg]
||[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
Line 4,421: Line 5,747:
|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/../CPU/hmc6502/ ../CPU/hmc6502] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/hmc6502/AllSuiteA.prg?format=raw AllSuiteA.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:red;"|fail
|style="background:red;"|fail
|-
||[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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|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/../CPU/kdormann/ ../CPU/kdormann] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CPU/kdormann/6502_functional_test.prg?format=raw 6502_functional_test.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,446: Line 5,771:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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
Line 4,457: Line 5,785:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,469: Line 5,791:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|-
|-
||[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]
||[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]
||
||
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,493: Line 5,809:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|-
|-
||[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]
||[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]
||
||
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,505: Line 5,821:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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
Line 4,528: Line 5,841:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|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;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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]
||
||
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,563: Line 5,863:
|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;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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]
||
||
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,577: Line 5,878:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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]
||
||
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,611: Line 5,901:
|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;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,625: Line 5,916:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,661: Line 5,942:
|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
|-
|-
||[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]
||[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
|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:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|-
|-
||[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]
||[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
|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:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,708: Line 5,980:
|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/../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]
||[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: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
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,731: Line 5,996:
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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
|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 4,746: Line 6,013:
|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/../interrupts/irq-ackn-bug/ ../interrupts/irq-ackn-bug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irq-ackn-bug/irq-ackn_after_cli2.prg?format=raw irq-ackn_after_cli2.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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-ackn_after_cli.prg?format=raw irq-ackn_after_cli.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
|-
||[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]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,793: Line 6,030:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|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;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,818: Line 6,050:
|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/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test1.prg?format=raw test1.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|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;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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]
||PAL
||
||
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|error
|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: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
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
|-
||[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]
||[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]
||
||
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,854: Line 6,088:
|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/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test3b.prg?format=raw test3b.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,865: Line 6,093:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,877: Line 6,106:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,889: Line 6,112:
|style="background: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/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test4.prg?format=raw test4.prg]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,902: Line 6,126:
|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/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test5b.prg?format=raw test5b.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 4,913: Line 6,132:
|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/../interrupts/irqdma/ ../interrupts/irqdma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdma/test5.prg?format=raw test5.prg]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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
|-
||[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]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|-
|-
||[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]
||[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]
||
||
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background: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:red;"|error
|style="background:red;"|error
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdummy/ ../interrupts/irqdummy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqdummy/irqdummy.prg?format=raw irqdummy.prg]
||[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 4,986: Line 6,185:
|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/../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]
|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
|-
||[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
|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/../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]
||
|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: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
|-
||[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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/nmitest/ ../interrupts/nmitest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/nmitest/nmitest.prg?format=raw nmitest.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/nmitest/ ../interrupts/nmitest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/nmitest/nmitest2.prg?format=raw nmitest2.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,046: Line 6,224:
|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/../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]
||
|style="background: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
|-
||[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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,058: Line 6,238:
|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/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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,066: Line 6,243:
|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:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[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]
||[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: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:lightgrey;"|n/a
|style="background:red;"|fail
|-
|style="background:red;"|fail
||[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]
|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
|-
||[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: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:red;"|error
|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_ntsc.prg?format=raw cmp-b-counts-a-new_ntsc.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: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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|-
|-
||[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]
||[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: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:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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 5,127: Line 6,315:
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciaports/ ../CIA/ciaports] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciaports/ciaports.prg?format=raw ciaports.prg]
||[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]
|style="background:lightgrey;"|interactive
||PAL
|style="background:lightgrey;"|manual
||screenshot
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciaports/ ../CIA/ciaports] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciaports/ghosting.prg?format=raw ghosting.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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/cia1.prg?format=raw cia1.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,165: Line 6,336:
|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/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia2.prg?format=raw cia2.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[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 5,178: Line 6,354:
|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/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia3.prg?format=raw cia3.prg]
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[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]
||
|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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
|-
||[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]
||[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
|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: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;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[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:red;"|error
|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/../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: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 5,234: Line 6,419:
|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/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:red;"|error
|-
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,246: Line 6,431:
|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;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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: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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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
Line 5,271: Line 6,467:
|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
|-
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[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
|-
|-
||[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]
||[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
|-
||[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
|-
||[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
|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
|-
||[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
||[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]
||
|style="background:lime;"|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
|-
||[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: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
|-
|-
||[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]
||[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
|style="background: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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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 5,346: Line 6,603:
|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/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia3new.prg?format=raw cia3new.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;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[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
||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
|-
||[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]
||
|style="background:lime;"|ok
|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,369: Line 6,623:
|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
|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/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia4new.prg?format=raw cia4new.prg]
||[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
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,381: Line 6,640:
|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/../CIA/ciavarious/ ../CIA/ciavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/ciavarious/cia8new.prg?format=raw cia8new.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
|-
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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/../CIA/dd0dtest/ ../CIA/dd0dtest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/dd0dtest/dd0dtest.prg?format=raw dd0dtest.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,404: Line 6,662:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[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]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
||
|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/../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
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,453: Line 6,676:
|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/../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]
||
|style="background: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: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/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]
||[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
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,477: Line 6,697:
|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/../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]
||
|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 5,490: Line 6,702:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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.prg?format=raw irqdelay-cia1-oneshot.prg]
||[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
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,501: Line 6,716:
|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/../CIA/irqdelay/ ../CIA/irqdelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/irqdelay-cia1.prg?format=raw irqdelay-cia1.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,510: Line 6,721:
|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/../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
||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
|-
||[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-4.prg?format=raw irqdelay-cia2-4.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,522: Line 6,735:
|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/../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]
||[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
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,537: Line 6,754:
|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/../CIA/irqdelay/ ../CIA/irqdelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/irqdelay/irqdelay-cia2-oneshot.prg?format=raw irqdelay-cia2-oneshot.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,546: Line 6,759:
|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/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/denrsel-1.prg?format=raw denrsel-1.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
|-
||[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.prg?format=raw irqdelay-cia2.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,558: Line 6,773:
|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/../CIA/reload0/ ../CIA/reload0] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/reload0/reload0a.prg?format=raw reload0a.prg]
||[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-2.prg?format=raw denrsel-2.prg]
||
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,573: Line 6,792:
|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/reload0/ ../CIA/reload0] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/reload0/reload0b.prg?format=raw reload0b.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
|-
||[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-s0.prg?format=raw denrsel-s0.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,585: Line 6,808:
|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/../CIA/shiftregister/ ../CIA/shiftregister] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/shiftregister/cia-icr-test2-continues.prg?format=raw cia-icr-test2-continues.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,597: Line 6,816:
|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-test2-oneshot.prg?format=raw cia-icr-test2-oneshot.prg]
||[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-s1.prg?format=raw denrsel-s1.prg]
||
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,609: Line 6,830:
|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/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]
||
|style="background:lime;"|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/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/denrsel-s2.prg?format=raw denrsel-s2.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,621: Line 6,846:
|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/../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]
||
|style="background: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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den01-48-0_ntsc.prg?format=raw den01-48-0_ntsc.prg]
||NTSC
||screenshot
|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-oneshot-new.prg?format=raw cia-icr-test-oneshot-new.prg]
||
|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 5,644: Line 6,870:
|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: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/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]
||[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_ntsc.prg?format=raw den01-48-1_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 5,658: Line 6,889:
|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:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|-
|-
||[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]
||[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_ntsc.prg?format=raw den01-48-2_ntsc.prg]
||
||NTSC
||screenshot
|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 5,667: Line 6,908:
|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:red;"|error
|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/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]
||[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_ntsc.prg?format=raw den01-49-0_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 5,682: Line 6,927:
|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/../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]
||
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|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;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|-
|-
||[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]
||[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_ntsc.prg?format=raw den01-49-1_ntsc.prg]
||
||NTSC
|style="background:red;"|error
||screenshot
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:lime;"|ok
|-
||[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]
||
|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 5,716: Line 6,946:
|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: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/timerbasics/ ../CIA/timerbasics] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/timerbasics/test.prg?format=raw test.prg]
||[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_ntsc.prg?format=raw den01-49-2_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 5,730: Line 6,965:
|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:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|-
|-
||[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]
||[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_ntsc.prg?format=raw den10-48-0_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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,741: Line 6,984:
|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: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/timerbasics/ ../CIA/timerbasics] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/timerbasics/timer.prg?format=raw timer.prg]
||[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_ntsc.prg?format=raw den10-48-1_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 5,754: Line 7,003:
|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:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|-
|-
||[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]
||[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_ntsc.prg?format=raw den10-48-2_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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,765: Line 7,022:
|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: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/timerbasics/ ../CIA/timerbasics] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/timerbasics/timer_test1.prg?format=raw timer_test1.prg]
||[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_ntsc.prg?format=raw den10-51-0_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 5,778: Line 7,041:
|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:red;"|fail
|style="background:red;"|fail
|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/0alarm.prg?format=raw 0alarm.prg]
||[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_ntsc.prg?format=raw den10-51-1_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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,789: Line 7,060:
|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:red;"|fail
|style="background:red;"|fail
|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/1alarm.prg?format=raw 1alarm.prg]
||[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_ntsc.prg?format=raw den10-51-2_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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,801: Line 7,079:
|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:red;"|fail
|style="background:red;"|fail
|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/4todcia1.prg?format=raw 4todcia1.prg]
||[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_ntsc.prg?format=raw den10-51-3_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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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: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/4tod.prg?format=raw 4tod.prg]
||[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_ntsc.prg?format=raw denrsel-0_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: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;"|error
|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: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/5tod.prg?format=raw 5tod.prg]
||[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-1_ntsc.prg?format=raw denrsel-1_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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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: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/6tod.prg?format=raw 6tod.prg]
||[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-2_ntsc.prg?format=raw denrsel-2_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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,849: Line 7,155:
|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:red;"|fail
|style="background:red;"|fail
|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/alarm-cond2.prg?format=raw alarm-cond2.prg]
||[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-63_ntsc.prg?format=raw denrsel-63_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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,861: Line 7,174:
|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:red;"|fail
|style="background:red;"|fail
|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/alarm-cond.prg?format=raw alarm-cond.prg]
||[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-s0_ntsc.prg?format=raw denrsel-s0_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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,873: Line 7,193:
|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:red;"|fail
|style="background:red;"|fail
|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/alarm.prg?format=raw alarm.prg]
||[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-s1_ntsc.prg?format=raw denrsel-s1_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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,885: Line 7,212:
|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:red;"|fail
|style="background:red;"|fail
|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/fix-hour.prg?format=raw fix-hour.prg]
||[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-s2_ntsc.prg?format=raw denrsel-s2_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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,897: Line 7,231:
|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:red;"|fail
|style="background:red;"|fail
|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/fix-min.prg?format=raw fix-min.prg]
||[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/denrsel55_ntsc.prg?format=raw denrsel55_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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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: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/fix-sec.prg?format=raw fix-sec.prg]
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,919: Line 7,265:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/fix-tsec.prg?format=raw fix-tsec.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,931: Line 7,273:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|-
||[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
|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/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/frogger.prg?format=raw frogger.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,943: Line 7,286:
|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
|-
|-
||[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]
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,955: Line 7,303:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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/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,967: Line 7,311:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|-
||[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
|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/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
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,979: Line 7,324:
|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
|-
|-
||[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]
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 5,991: Line 7,341:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/hzsync1.prg?format=raw hzsync1.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,002: Line 7,348:
|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/../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
|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/../CIA/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/hzsync2.prg?format=raw hzsync2.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,015: Line 7,363:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/hzsync3.prg?format=raw hzsync3.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,030: Line 7,380:
|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/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/hzsync4.prg?format=raw hzsync4.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,039: Line 7,386:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
|-
||[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]
||[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
|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,051: Line 7,400:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/powerup.prg?format=raw powerup.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
|-
||[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:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,078: Line 7,423:
|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/tod/ ../CIA/tod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CIA/tod/stability-ntsc.prg?format=raw stability-ntsc.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
||
|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/../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
Line 6,114: Line 7,437:
|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]
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,123: Line 7,443:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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/../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]
||[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
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,137: Line 7,457:
|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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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
||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,149: Line 7,478:
|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:red;"|fail
|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/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/border-252.prg?format=raw border-252.prg]
||[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: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 6,160: Line 7,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:red;"|fail
|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/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]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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:red;"|error
|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/border-bm-ysh2.prg?format=raw border-bm-ysh2.prg]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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:red;"|fail
|style="background:red;"|error
|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/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]
||[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
||screenshot
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|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:red;"|error
|style="background:lightgrey;"|n/a
|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/border-mcbm.prg?format=raw border-mcbm.prg]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|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/border/ ../VICII/border] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/border/vborder.prg?format=raw vborder.prg]
||[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]
|style="background:lightgrey;"|interactive
||NTSC
|style="background:lightgrey;"|manual
||screenshot
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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.prg?format=raw vborder2.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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_ntsc.prg?format=raw vborder_ntsc.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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_ntsc.prg?format=raw vborder2_ntsc.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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_ntscold.prg?format=raw vborder_ntscold.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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_ntscold.prg?format=raw vborder2_ntscold.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/colorram/ ../VICII/colorram] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/colorram/test.prg?format=raw test.prg]
||
|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,293: Line 7,554:
|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:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|-
|-
||[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]
||[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: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 6,304: Line 7,573:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|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/D011Test/ ../VICII/D011Test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/D011Test/disable-bad.prg?format=raw disable-bad.prg]
||[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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|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/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]
||[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
||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
|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;"|error
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[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_ntscold.prg?format=raw disable-bad_ntscold.prg]
||screenshot
|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
|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/den01-48-0.prg?format=raw den01-48-0.prg]
||[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: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 6,352: Line 7,630:
|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:red;"|fail
|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/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]
||[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 6,364: Line 7,649:
|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:red;"|fail
|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/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]
||[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
||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,377: Line 7,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:red;"|fail
|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/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]
||[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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,388: Line 7,687:
|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:red;"|fail
|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/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]
||[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
||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,401: Line 7,706:
|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
|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/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]
||[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
||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:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|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/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]
||[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
||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
Line 6,425: Line 7,744:
|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:red;"|fail
|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/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]
||[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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,436: Line 7,763:
|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:red;"|fail
|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/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]
||[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
||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
Line 6,449: Line 7,782:
|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:red;"|fail
|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/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]
||[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
||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,461: Line 7,801:
|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
|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/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]
||[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: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 6,472: Line 7,820:
|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:red;"|fail
|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/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]
||[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
Line 6,485: Line 7,839:
|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
|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/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]
||[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
||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:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|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/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/denrsel-0.prg?format=raw denrsel-0.prg]
||[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
||screenshot
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,507: Line 7,873:
|style="background: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/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/denrsel-1.prg?format=raw denrsel-1.prg]
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,520: Line 7,880:
|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/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/denrsel-2.prg?format=raw denrsel-2.prg]
||[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
||screenshot
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,531: Line 7,892:
|style="background: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/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/denrsel55.prg?format=raw denrsel55.prg]
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,544: Line 7,899:
|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/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/denrsel-63.prg?format=raw denrsel-63.prg]
||[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
||screenshot
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,555: Line 7,911:
|style="background: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/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/denrsel-s0.prg?format=raw denrsel-s0.prg]
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,568: Line 7,918:
|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/../VICII/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/denrsel-s1.prg?format=raw denrsel-s1.prg]
||[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
||screenshot
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,581: Line 7,932:
|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:red;"|fail
|style="background:red;"|fail
|-
|-
||[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-s2.prg?format=raw denrsel-s2.prg]
||[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
||screenshot
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 6,593: Line 7,951:
|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/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den01-48-0_ntsc.prg?format=raw den01-48-0_ntsc.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: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:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|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/den01-48-1_ntsc.prg?format=raw den01-48-1_ntsc.prg]
||[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
||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: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:red;"|error
|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/den01-48-2_ntsc.prg?format=raw den01-48-2_ntsc.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: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:red;"|error
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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_ntsc.prg?format=raw den01-49-0_ntsc.prg]
||[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
||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: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:red;"|error
|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/den01-49-1_ntsc.prg?format=raw den01-49-1_ntsc.prg]
||screenshot
|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
|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:red;"|error
|style="background:red;"|fail
|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/den01-49-2_ntsc.prg?format=raw den01-49-2_ntsc.prg]
||[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: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:red;"|error
|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-48-0_ntsc.prg?format=raw den10-48-0_ntsc.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:lightgrey;"|n/a
|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:red;"|error
|style="background:red;"|fail
|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-48-1_ntsc.prg?format=raw den10-48-1_ntsc.prg]
||[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: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:red;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|style="background:lime;"|ok
||[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_ntsc.prg?format=raw den10-48-2_ntsc.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:lightgrey;"|n/a
|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:red;"|error
|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-0_ntsc.prg?format=raw den10-51-0_ntsc.prg]
||[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: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: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;"|error
|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/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den10-51-1_ntsc.prg?format=raw den10-51-1_ntsc.prg]
||[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: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:red;"|fail
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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
|-
|-
||[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_ntsc.prg?format=raw den10-51-2_ntsc.prg]
||[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]
||screenshot
||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: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:red;"|error
|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-3_ntsc.prg?format=raw den10-51-3_ntsc.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:lightgrey;"|n/a
|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:red;"|error
|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/denrsel-0_ntsc.prg?format=raw denrsel-0_ntsc.prg]
||[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: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:red;"|fail
|style="background:red;"|error
|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/denrsel-1_ntsc.prg?format=raw denrsel-1_ntsc.prg]
||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: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:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|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/denrsel-2_ntsc.prg?format=raw denrsel-2_ntsc.prg]
||[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]
||screenshot
||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: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:lightgrey;"|n/a
|style="background:red;"|error
|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/denrsel-63_ntsc.prg?format=raw denrsel-63_ntsc.prg]
||screenshot
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[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
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|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/denrsel-s0_ntsc.prg?format=raw denrsel-s0_ntsc.prg]
||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:lightgrey;"|n/a
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[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-s1_ntsc.prg?format=raw denrsel-s1_ntsc.prg]
||[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]
||screenshot
||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: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:red;"|error
|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/denrsel-s2_ntsc.prg?format=raw denrsel-s2_ntsc.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: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:red;"|fail
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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/denrsel55_ntsc.prg?format=raw denrsel55_ntsc.prg]
||[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]
||screenshot
||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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|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/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den01-48-0_ntscold.prg?format=raw den01-48-0_ntscold.prg]
||[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]
||screenshot
||NTSCOLD
|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
Line 6,855: Line 8,197:
|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
|-
||[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_ntscold.prg?format=raw den01-48-1_ntscold.prg]
||screenshot
|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
Line 6,871: Line 8,206:
|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/den01-48-2_ntscold.prg?format=raw den01-48-2_ntscold.prg]
||[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:lightgrey;"|n/a
|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:lime;"|ok
|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: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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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_ntscold.prg?format=raw den01-49-0_ntscold.prg]
||[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
||screenshot
||screenshot
|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: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:red;"|fail
|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: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
|-
|-
||[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_ntscold.prg?format=raw den01-49-1_ntscold.prg]
||[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
||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:red;"|fail
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|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
|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/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den01-49-2_ntscold.prg?format=raw den01-49-2_ntscold.prg]
||[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
||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: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: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
|-
|-
||[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_ntscold.prg?format=raw den10-48-0_ntscold.prg]
||[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: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: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
|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/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den10-48-1_ntscold.prg?format=raw den10-48-1_ntscold.prg]
||[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
||screenshot
|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
|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: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
|-
||[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: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: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/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/den10-48-2_ntscold.prg?format=raw den10-48-2_ntscold.prg]
||[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]
||
||screenshot
||screenshot
|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
|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: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
|-
|-
||[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_ntscold.prg?format=raw den10-51-0_ntscold.prg]
||[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]
||screenshot
||PAL
|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:lightgrey;"|n/a
|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: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:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[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
||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: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/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: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
|-
|-
||[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_ntscold.prg?format=raw den10-51-1_ntscold.prg]
||[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
||screenshot
||screenshot
|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: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
|-
|-
||[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_ntscold.prg?format=raw den10-51-2_ntscold.prg]
||[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
||screenshot
||screenshot
|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: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:red;"|fail
|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: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
|-
|-
||[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_ntscold.prg?format=raw den10-51-3_ntscold.prg]
||[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: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:lightgrey;"|n/a
|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
|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/denrsel-0_ntscold.prg?format=raw denrsel-0_ntscold.prg]
||[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
||screenshot
|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: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/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: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: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/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
||screenshot
|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: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/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
||screenshot
|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: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/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
||screenshot
||screenshot
|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: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/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
||screenshot
|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: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/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
||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
|-
||[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
|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: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/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
|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:lightgrey;"|n/a
|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/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/denrsel-1_ntscold.prg?format=raw denrsel-1_ntscold.prg]
||[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
||screenshot
|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: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/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
||screenshot
|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:lightgrey;"|n/a
|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/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/denrsel-2_ntscold.prg?format=raw denrsel-2_ntscold.prg]
||[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
||screenshot
|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: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/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: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: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:lightgrey;"|n/a
|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/dentest/ ../VICII/dentest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/dentest/denrsel-63_ntscold.prg?format=raw denrsel-63_ntscold.prg]
||[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
||screenshot
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|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:red;"|fail
|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: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/videomode1_ntscold.prg?format=raw videomode1_ntscold.prg]
||NTSCOLD
||screenshot
|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
Line 7,050: Line 8,748:
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|-
|style="background:red;"|fail
||[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-s0_ntscold.prg?format=raw denrsel-s0_ntscold.prg]
||screenshot
|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
Line 7,063: Line 8,757:
|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/denrsel-s1_ntscold.prg?format=raw denrsel-s1_ntscold.prg]
||[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
||screenshot
|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
Line 7,070: Line 8,767:
|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
|-
||[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-s2_ntscold.prg?format=raw denrsel-s2_ntscold.prg]
||screenshot
|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-v_ntscold.prg?format=raw videomode-v_ntscold.prg]
||NTSCOLD
||screenshot
|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
Line 7,087: Line 8,795:
|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/denrsel55_ntscold.prg?format=raw denrsel55_ntscold.prg]
||[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
||screenshot
|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:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
Line 7,099: Line 8,814:
|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.prg?format=raw test1.prg]
||[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]
|style="background:lightgrey;"|interactive
||NTSCOLD
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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.prg?format=raw test2.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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.prg?format=raw test3.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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/test4.prg?format=raw test4.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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.prg?format=raw fldscroll.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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.prg?format=raw blackmail.prg]
||screenshot
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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: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/gfxfetch/ ../VICII/gfxfetch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/gfxfetch/gfxfetch.prg?format=raw gfxfetch.prg]
||[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
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background: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: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/gfxfetch/ ../VICII/gfxfetch] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/gfxfetch/gfxfetch_ntsc.prg?format=raw gfxfetch_ntsc.prg]
||[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
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|-
||[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_ntscold.prg?format=raw gfxfetch_ntscold.prg]
||screenshot
|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
Line 7,207: Line 8,871:
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|-
|-
||[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]
||[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]
||screenshot
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 7,216: Line 8,881:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/lpcoordinates/ ../VICII/lpcoordinates] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/lpcoordinates/lpcoords.prg?format=raw lpcoords.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
||
|style="background:lime;"|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
|-
||[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: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:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|-
||[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: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:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|-
|-
||[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]
||[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
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 7,249: Line 8,935:
|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
|-
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
|style="background:red;"|fail
||[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]
|style="background:red;"|fail
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/movesplit/ ../VICII/movesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/movesplit/movesplit.prg?format=raw movesplit.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/movesplit/ ../VICII/movesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/movesplit/movesplit_ntsc.prg?format=raw movesplit_ntsc.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/movesplit/ ../VICII/movesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/movesplit/movesplit_ntscold.prg?format=raw movesplit_ntscold.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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;"|error
|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
|-
|-
||[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]
||[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
|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:red;"|error
|style="background:lightgrey;"|n/a
|-
||[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]
||
|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
|style="background:lightgrey;"|n/a
|-
||[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]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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
|-
||[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
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|-
||[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]
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 7,370: Line 9,013:
|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;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[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]
||[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]
||screenshot
||PAL
|style="background:red;"|error
||
|style="background:lime;"|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;"|error
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|-
|-
||[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_ntscold.prg?format=raw screenpos_ntscold.prg]
||[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]
||screenshot
||
|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/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]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 7,410: Line 9,054:
|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/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]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|-
|-
||[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]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|-
|style="background:lime;"|ok
||[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:lime;"|ok
||screenshot
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|-
|-
||[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]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|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/rmwtest.prg?format=raw rmwtest.prg]
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 7,480: Line 9,096:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|-
|-
||[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]
||[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]
||screenshot
||
|style="background:red;"|error
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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:lightgrey;"|n/a
|style="background:red;"|error
|style="background:lime;"|ok
|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/rmwtest_ntscold.prg?format=raw rmwtest_ntscold.prg]
||[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]
||screenshot
||
|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:lightgrey;"|n/a
|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:lime;"|ok
|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/../VICII/videomode/ ../VICII/videomode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/videomode/videomode1.prg?format=raw videomode1.prg]
|style="background:lime;"|ok
||screenshot
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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]
||screenshot
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|-
|-
||[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]
||[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]
||screenshot
||
|style="background:red;"|error
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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.prg?format=raw videomode-w.prg]
||screenshot
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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-x.prg?format=raw videomode-x.prg]
||screenshot
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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-y.prg?format=raw videomode-y.prg]
||screenshot
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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.prg?format=raw videomode-z.prg]
||screenshot
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|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/videomode1_ntsc.prg?format=raw videomode1_ntsc.prg]
||screenshot
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|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:lightgrey;"|n/a
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|-
|-
||[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]
||[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]
||
||screenshot
||
|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: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: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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|-
|-
||[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]
||[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]
||screenshot
||
|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:lightgrey;"|n/a
|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: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:lime;"|ok
|-
|-
||[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]
||[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
||screenshot
|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/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]
||screenshot
|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/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]
||screenshot
|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/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]
||screenshot
|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/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]
||screenshot
|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/vspbug/ ../VICII/vspbug] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/vspbug/lft-safe-vsp.prg?format=raw lft-safe-vsp.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/sprite0move/ ../VICII/sprite0move] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/sprite0move/sprite0move.prg?format=raw sprite0move.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/sprite0move/ ../VICII/sprite0move] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/sprite0move/sprite0move.prg_ntsc?format=raw sprite0move.prg_ntsc]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/sprite0move/ ../VICII/sprite0move] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/sprite0move/sprite0move.prg_ntscold?format=raw sprite0move.prg_ntscold]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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.prg?format=raw spritebug.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[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]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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
|-
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 7,779: Line 9,226:
|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
|-
|-
||[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.prg?format=raw spritecrunch.prg]
||[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]
|style="background:lightgrey;"|interactive
||PAL
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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.prg?format=raw spritecrunch2.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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_ntscold.prg?format=raw d017-54_ntscold.prg]
||screenshot
|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/spritedma/ ../VICII/spritedma] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritedma/d017-57_ntscold.prg?format=raw d017-57_ntscold.prg]
||screenshot
|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/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]
||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: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:red;"|error
|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_ntsc.prg?format=raw d017-57_ntsc.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: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:red;"|fail
|style="background:red;"|error
|style="background:lime;"|ok
|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/../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]
||[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
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 7,865: Line 9,262:
|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
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 7,877: Line 9,281:
|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/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable1_ntscold.prg?format=raw spriteenable1_ntscold.prg]
||screenshot
|style="background:red;"|error
|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/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable1_ntsc.prg?format=raw spriteenable1_ntsc.prg]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|error
|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]
||[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
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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]
||screenshot
|style="background:red;"|error
|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:lime;"|ok
|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:lime;"|ok
|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/../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]
||[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
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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:red;"|error
|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.prg?format=raw spriteenable2.prg]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|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/../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]
||[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
||screenshot
|style="background:red;"|error
|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/spriteenable/ ../VICII/spriteenable] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spriteenable/spriteenable3_ntsc.prg?format=raw spriteenable3_ntsc.prg]
||screenshot
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|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.prg?format=raw spriteenable3.prg]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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_ntscold.prg?format=raw spriteenable4_ntscold.prg]
||screenshot
|style="background:red;"|error
|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:red;"|fail
|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:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[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]
||[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
||screenshot
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|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]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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_ntscold.prg?format=raw spriteenable5_ntscold.prg]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|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: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
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|-
|-
||[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]
||[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
||screenshot
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|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.prg?format=raw spriteenable5.prg]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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.prg?format=raw test.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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;"|error
|style="background:red;"|fail
|style="background:red;"|error
|-
|-
||[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]
||[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
|style="background:red;"|error
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritemcbase/ ../VICII/spritemcbase] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritemcbase/spritemcbase.prg?format=raw spritemcbase.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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: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
|-
||[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: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-exp-unexp-hires.prg?format=raw ss-exp-unexp-hires.prg]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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/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]
||[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
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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:red;"|error
|style="background:red;"|error
|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-color.prg?format=raw ss-hires-color.prg]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background: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:red;"|error
|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/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]
||[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
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 8,162: Line 9,449:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[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]
||[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
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 8,174: Line 9,468:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[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]
||[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
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|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]
||[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
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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/../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]
|style="background:red;"|fail
||screenshot
|style="background:red;"|fail
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[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]
||[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
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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-exp.prg?format=raw ss-pri-exp.prg]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[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]
||[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
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background: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: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
|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/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]
||[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
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background: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: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
|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/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-pri.prg?format=raw ss-pri.prg]
||[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
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background: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: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: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/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]
||[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
||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:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|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/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]
||[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
||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:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|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/spritesplit/ ../VICII/spritesplit] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesplit/ss-xpos.prg?format=raw ss-xpos.prg]
||[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
||screenshot
|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:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|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/spritesteal/ ../VICII/spritesteal] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesteal/spritesteal_ntscold.prg?format=raw spritesteal_ntscold.prg]
||[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
Line 8,335: Line 9,669:
|style="background:lightgrey;"|n/a
|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]
||[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
|style="background:lime;"|ok
||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:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|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/spritesteal/ ../VICII/spritesteal] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritesteal/spritesteal.prg?format=raw spritesteal.prg]
||[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
|style="background:lime;"|ok
||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
|-
||[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]
||
|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
Line 8,371: Line 9,707:
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|-
|-
||[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]
||[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
|style="background:lime;"|ok
||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:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|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/spritex/ ../VICII/spritex] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VICII/spritex/testsuite.prg?format=raw testsuite.prg]
|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
|-
||[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
|-
||[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
Line 8,391: Line 9,754:
|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:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
|-
||[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]
||[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 8,403: Line 9,773:
|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:lime;"|ok
|style="background:lime;"|ok
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/bitfade/ ../SID/bitfade] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/bitfade/delayenv3.prg?format=raw delayenv3.prg]
||[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]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/bitfade/ ../SID/bitfade] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/bitfade/delayfrq0.prg?format=raw delayfrq0.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/bitfade/ ../SID/bitfade] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/bitfade/delayosc3.prg?format=raw delayosc3.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/bitfade/ ../SID/bitfade] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/bitfade/delaynoise.prg?format=raw delaynoise.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/bitfade/ ../SID/bitfade] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/bitfade/test1env3.prg?format=raw test1env3.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/bitfade/ ../SID/bitfade] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/bitfade/test1frq0.prg?format=raw test1frq0.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/bitfade/ ../SID/bitfade] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/bitfade/test1osc3.prg?format=raw test1osc3.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
||
||
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 8,499: Line 9,792:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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.prg?format=raw detect.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
||
|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 8,526: Line 9,800:
|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/../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]
||[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 8,535: Line 9,811:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background: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:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|error
|-
|-
||[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]
||[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
|style="background:lime;"|ok
||screenshot
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 8,559: Line 9,829:
|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;"|fail
|style="background:red;"|fail
|-
||[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
|-
||[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
|style="background:lime;"|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:lightblue;"|timeout
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|-
|-
||[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]
||[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 8,582: Line 9,867:
|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:lightblue;"|timeout
|style="background:red;"|error
|style="background:red;"|error
|-
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[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:lightblue;"|timeout
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|-
||[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]
||
|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;"|fail
|style="background:red;"|fail
|-
||[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:lightblue;"|timeout
|style="background:red;"|error
|style="background:red;"|error
|-
||[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: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:lightblue;"|timeout
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|-
|-
||[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]
||[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
|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:lightblue;"|timeout
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|-
|-
||[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]
||[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: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:lightblue;"|timeout
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|-
|-
||[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]
||[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
Line 8,654: Line 9,962:
|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: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
|-
|-
||[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]
||[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
|style="background:lime;"|ok
||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;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|-
|-
||[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]
||[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;"|fail
|-
||[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:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/mapping/ ../SID/mapping] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/mapping/sid-detect2.prg?format=raw sid-detect2.prg]
||[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]
|style="background:lightgrey;"|interactive
||PAL
|style="background:lightgrey;"|manual
||screenshot
|style="background:lightgrey;"|manual
|style="background:lime;"|ok
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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/noisewriteback.prg?format=raw noisewriteback.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
||
|style="background: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: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;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|-
|-
||[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]
||[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
Line 8,763: Line 10,077:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_8_to_8_old.prg?format=raw noise_writeback_check_8_to_8_old.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:red;"|fail
|style="background:red;"|fail
|-
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|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:lightgrey;"|n/a
|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;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_8_to_A_old.prg?format=raw noise_writeback_check_8_to_A_old.prg]
||[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
|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:lightgrey;"|n/a
|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;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_8_to_B_old.prg?format=raw noise_writeback_check_8_to_B_old.prg]
||[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
|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:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|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:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_8_to_D_old.prg?format=raw noise_writeback_check_8_to_D_old.prg]
||[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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
Line 8,836: Line 10,155:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|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
|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/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:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|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/../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]
||[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: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: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;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_8_old.prg?format=raw noise_writeback_check_9_to_8_old.prg]
||[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
|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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_A_old.prg?format=raw noise_writeback_check_9_to_A_old.prg]
||[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
|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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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: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;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_C_old.prg?format=raw noise_writeback_check_9_to_C_old.prg]
||[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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
||
|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 8,932: Line 10,250:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|-
|-
||[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]
||[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: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:lightgrey;"|n/a
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|-
|-
||[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]
||[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: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;"|error
|style="background:red;"|error
|-
||[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]
||
|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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|-
|-
||[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]
||[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
|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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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]
||[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
||
||
|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 9,004: Line 10,326:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|-
|-
||[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]
||[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: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;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|-
|-
||[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]
||[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
||
||
|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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:lime;"|ok
|-
|-
||[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]
||[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: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;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|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]
||[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
|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:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|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
|-
|-
||[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]
||[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
|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:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:lightblue;"|timeout
|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_old.prg?format=raw noise_writeback_check_C_to_8_old.prg]
||[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
|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:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|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_old.prg?format=raw noise_writeback_check_C_to_A_old.prg]
||[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]
||
||
||
|style="background: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;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|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_C_old.prg?format=raw noise_writeback_check_C_to_C_old.prg]
||[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:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|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_old.prg?format=raw noise_writeback_check_C_to_E_old.prg]
||[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]
||
||
||
|style="background: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;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|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_old.prg?format=raw noise_writeback_check_D_to_8_old.prg]
||[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]
||
||
||
|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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|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_A_old.prg?format=raw noise_writeback_check_D_to_A_old.prg]
||[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:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
|-
||[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]
||[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]
||
||
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
||
|style="background: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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lime;"|ok
|-
|-
||[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]
||[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]
||
||
||
|style="background: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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|-
|-
||[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]
||[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]
||
||
||
|style="background: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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|-
|-
||[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]
||[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;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|-
|-
||[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]
||[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: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
|-
||[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;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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
|-
|-
||[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]
||[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:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|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_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:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_8_old.prg?format=raw noise_writeback_check_F_to_8_old.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: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;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
|-
||[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]
||[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: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;"|error
|style="background:red;"|fail
|style="background:red;"|error
|-
||[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]
||
|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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
|-
||[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]
||[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: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 9,460: Line 10,725:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|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/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]
||[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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
||
|style="background: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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|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_old.prg?format=raw noise_writeback_check_F_to_F_old.prg]
||[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: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 9,508: Line 10,763:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|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
|-
||[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:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 9,531: Line 10,785:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_8_to_A_new.prg?format=raw noise_writeback_check_8_to_A_new.prg]
||[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: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;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|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
|-
||[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:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 9,567: Line 10,823:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_8_to_E_new.prg?format=raw noise_writeback_check_8_to_E_new.prg]
||[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;"|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:lime;"|ok
|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/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: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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 9,590: Line 10,861:
|style="background: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;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_8_new.prg?format=raw noise_writeback_check_9_to_8_new.prg]
||[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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|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
|-
||[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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 9,627: Line 10,899:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_new.prg?format=raw noise_writeback_check_9_to_D_new.prg]
||[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:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_new.prg?format=raw noise_writeback_check_9_to_F_new.prg]
||[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: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 9,651: Line 10,937:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_8_new.prg?format=raw noise_writeback_check_A_to_8_new.prg]
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|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_new.prg?format=raw noise_writeback_check_A_to_9_new.prg]
||[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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|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
|-
||[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
|-
||[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:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 9,699: Line 11,013:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_D_new.prg?format=raw noise_writeback_check_A_to_D_new.prg]
||[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: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;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|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_E_new.prg?format=raw noise_writeback_check_A_to_E_new.prg]
||[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: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;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|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:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|error
|-
|-
||[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]
||[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:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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]
||[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: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 9,759: Line 11,088:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_B_new.prg?format=raw noise_writeback_check_B_to_B_new.prg]
||[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: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;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|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
|-
||[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:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 9,795: Line 11,127:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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]
||[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: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_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: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;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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_C_to_8_new.prg?format=raw noise_writeback_check_C_to_8_new.prg]
||[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: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;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|-
|-
||[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]
||[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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|-
|style="background:lime;"|ok
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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]
||[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:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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]
||[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: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;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|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
|-
||[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:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 9,927: Line 11,260:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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]
||[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:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 9,951: Line 11,279:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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]
||[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: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;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|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_E_to_B_new.prg?format=raw noise_writeback_check_E_to_B_new.prg]
||[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: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;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|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
|-
||[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:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 9,999: Line 11,336:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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]
||[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: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;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|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
|-
||[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: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:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 10,035: Line 11,374:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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]
||[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: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;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|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
|-
||[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: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:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 10,071: Line 11,412:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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]
||[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: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: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:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/paddles/ ../SID/paddles] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/paddles/ft3detect.prg?format=raw ft3detect.prg]
||[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]
|style="background:lightgrey;"|interactive
||6581
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
||
||
|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: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: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_old.prg?format=raw osc_topbit_test_noise_old.prg]
||[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: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:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|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/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]
||[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: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: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: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_old.prg?format=raw osc_topbit_test_pulse_old.prg]
||[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: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: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;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|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]
||[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: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: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: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_old.prg?format=raw osc_topbit_test_triangle_old.prg]
||[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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:red;"|error
|style="background:red;"|error
|-
||[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:lime;"|ok
Line 10,179: Line 11,544:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|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/noiseinit.prg?format=raw noiseinit.prg]
||[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:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/paddles/ ../SID/paddles] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/paddles/paddle.prg?format=raw paddle.prg]
||[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]
|style="background:lightgrey;"|interactive
||6581
|style="background:lightgrey;"|manual
||
|style="background:lightgrey;"|manual
|style="background:red;"|fail
|style="background:lightgrey;"|manual
|style="background:red;"|fail
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|manual
|style="background:red;"|fail
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|manual
|style="background:red;"|fail
|style="background:lightgrey;"|manual
|style="background:red;"|fail
|style="background:lightgrey;"|manual
|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/ringmod/ ../SID/ringmod] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/ringmod/ringmodtest.prg?format=raw ringmodtest.prg]
||[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: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 10,227: Line 11,601:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|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/stereo/ ../SID/stereo] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/stereo/stereo.prg?format=raw stereo.prg]
||[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]
|style="background:lightgrey;"|interactive
||6581
|style="background:lightgrey;"|manual
||
|style="background:lightgrey;"|manual
|style="background:red;"|fail
|style="background:lightgrey;"|manual
|style="background:red;"|fail
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|manual
|style="background:red;"|fail
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|manual
|style="background:red;"|fail
|style="background:lightgrey;"|manual
|style="background:red;"|fail
|style="background:lightgrey;"|manual
|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/sidcheck/ ../SID/sidcheck] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SID/sidcheck/sidcheck.prg?format=raw sidcheck.prg]
||[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]
|style="background:lightgrey;"|interactive
||6581  
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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]
||
||
|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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background: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:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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-6581.prg?format=raw waveforms-40-6581.prg]
||[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: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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|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
|-
|-
||[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]
||[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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|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/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]
||[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: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;"|error
|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
|-
|-
||[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]
||[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: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;"|error
|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
|-
||[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;"|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
|-
|-
||[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]
||[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: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;"|error
|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
|-
|-
||[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]
||[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: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;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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: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_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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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
|-
|-
||[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]
||[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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[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]
||
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/cartio/ ../C64/autostart/cartio] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/cartio/test.prg?format=raw test.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[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/?format=raw ] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/defaults/test.crt?format=raw test.crt])
||
|style="background:red;"|error
|style="background:red;"|error
|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:red;"|error
|style="background:lightblue;"|timeout
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ ../C64/carts] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/mmcrplugin.prg?format=raw mmcrplugin.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ ../C64/carts] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/?format=raw ] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/8kgame.crt?format=raw 8kgame.crt])
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 10,430: Line 11,810:
|style="background: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
|-
||[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:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ ../C64/carts] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/?format=raw ] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/16kgame.crt?format=raw 16kgame.crt])
||
|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 10,444: Line 11,830:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ ../C64/carts] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/?format=raw ] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/mmcr-64krom.crt?format=raw mmcr-64krom.crt])
||[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]
|style="background:lightgrey;"|interactive
||6581
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ ../C64/carts] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/?format=raw ] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/romram.crt?format=raw romram.crt])
||
||
|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 10,468: Line 11,848:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ ../C64/carts] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/?format=raw ]
||[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: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: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
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/pagefox/ ../C64/carts/pagefox] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/pagefox/?format=raw ] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/pagefox/writeram-8000.crt?format=raw writeram-8000.crt])
||[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: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: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:lightgrey;"|n/a
|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/carts/pagefox/ ../C64/carts/pagefox] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/pagefox/?format=raw ] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/pagefox/writeram-a000.crt?format=raw writeram-a000.crt])
||[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: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: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:lightgrey;"|n/a
|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/carts/pagefox/ ../C64/carts/pagefox] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/pagefox/?format=raw ] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/pagefox/godot.crt?format=raw godot.crt])
||[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: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: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:lightgrey;"|n/a
|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/carts/ef-test/ ../C64/carts/ef-test] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ef-test/?format=raw ] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ef-test/ef_test.crt?format=raw ef_test.crt])
||[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
Line 10,527: Line 11,939:
|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:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/rr-freeze/ ../C64/carts/rr-freeze] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/rr-freeze/?format=raw ] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/rr-freeze/rr-freeze.crt?format=raw rr-freeze.crt])
||[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]
|style="background:lightgrey;"|interactive
||8580
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/?format=raw ] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/nptest.crt?format=raw nptest.crt])
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/?format=raw ] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/rrtest.crt?format=raw rrtest.crt])
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/supergames/ ../C64/carts/supergames] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/supergames/?format=raw ] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/supergames/supergames.crt?format=raw supergames.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 10,575: Line 11,958:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/tamtest/ ../C64/carts/tamtest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/tamtest/?format=raw ] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/tamtest/tamtest.crt?format=raw tamtest.crt])
||[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]
|style="background:lightgrey;"|interactive
||8580
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ultimax/ ../C64/carts/ultimax] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ultimax/ultimax-ef.crt?format=raw ultimax-ef.crt]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ultimax/ ../C64/carts/ultimax] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ultimax/ultimax-rr.crt?format=raw ultimax-rr.crt]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ultimax/ ../C64/carts/ultimax] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ultimax/ultimax-vic-ef.crt?format=raw ultimax-vic-ef.crt]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ultimax/ ../C64/carts/ultimax] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ultimax/ultimax-vic-rr.crt?format=raw ultimax-vic-rr.crt]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/ciairq/ ../C64/freezer/ciairq] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/ciairq/ciairq1t1.prg?format=raw ciairq1t1.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/ciairq/ ../C64/freezer/ciairq] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/ciairq/ciairq1t2.prg?format=raw ciairq1t2.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/ciairq/ ../C64/freezer/ciairq] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/ciairq/ciairq2t1.prg?format=raw ciairq2t1.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/ciairq/ ../C64/freezer/ciairq] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/ciairq/ciairq2t2.prg?format=raw ciairq2t2.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/batest/ ../C64/freezer/batest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/batest/batest.prg?format=raw batest.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/ ../C64/freezer] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/freezeblock.prg?format=raw freezeblock.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/ ../C64/freezer] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/freeze-cia1.prg?format=raw freeze-cia1.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/ ../C64/freezer] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/freeze-cia2.prg?format=raw freeze-cia2.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/ ../C64/freezer] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/freeze-combined.prg?format=raw freeze-combined.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/ ../C64/freezer] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/freeze-raster.prg?format=raw freeze-raster.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/ ../C64/freezer] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/freezer/freeze-test.prg?format=raw freeze-test.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/colorram/ ../REU/colorram] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/colorram/colorram.prg?format=raw colorram.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
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|-
|style="background:lime;"|ok
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/colorram/ ../REU/colorram] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/colorram/dmacolortest.prg?format=raw dmacolortest.prg]
|style="background:lime;"|ok
|style="background:lightgrey;"|interactive
|style="background:lime;"|ok
|style="background:lightgrey;"|manual
|style="background:red;"|fail
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|manual
|style="background:red;"|fail
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/detectsize/ ../REU/detectsize] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/detectsize/detectreu.prg?format=raw detectreu.prg]
||[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:lightgrey;"|n/a
|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:red;"|error
|style="background: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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/misc/ ../REU/misc] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/misc/bitfill-auto.prg?format=raw bitfill-auto.prg]
||[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: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;"|error
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/misc/ ../REU/misc] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/misc/twoblocks-auto.prg?format=raw twoblocks-auto.prg]
||[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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/misc/ ../REU/misc] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/misc/twoblocks-ff00-auto.prg?format=raw twoblocks-ff00-auto.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
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/misc/ ../REU/misc] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/misc/wheels.prg?format=raw wheels.prg]
||[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: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;"|error
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu.exo.prg?format=raw quickreu.exo.prg]
||[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;"|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: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;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reudetect/ ../REU/reudetect] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reudetect/reudetect.prg?format=raw reudetect.prg]
||[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: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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming/ ../REU/reutiming] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming/reutiming.prg?format=raw reutiming.prg]
||[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: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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/a.prg?format=raw a.prg]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/b.prg?format=raw b.prg]
||[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]
||screenshot
||8580
|style="background:red;"|error
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/spriteba/ ../REU/spriteba] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/spriteba/spriteba.prg?format=raw spriteba.prg]
||[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]
|style="background:lightgrey;"|interactive
||8580
|style="background:lightgrey;"|manual
||
|style="background:lightgrey;"|manual
|style="background:lime;"|ok
|style="background:lightgrey;"|manual
|style="background:lime;"|ok
|style="background:lightgrey;"|manual
|style="background:lime;"|ok
|style="background:lightgrey;"|manual
|style="background:lime;"|ok
|style="background:lightgrey;"|manual
|style="background:lime;"|ok
|style="background:lightgrey;"|manual
|style="background:lime;"|ok
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/ ../REU/xfertiming] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/xfertiming-cmp.prg?format=raw xfertiming-cmp.prg]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/ ../REU/xfertiming] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/xfertiming-swap.prg?format=raw xfertiming-swap.prg]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/ ../REU/xfertiming] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/xfertiming-swap2.prg?format=raw xfertiming-swap2.prg]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/ ../REU/xfertiming] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/xfertiming-toreu.prg?format=raw xfertiming-toreu.prg]
||[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]
||screenshot
||8580
|style="background:red;"|error
||
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/ ../REU/xfertiming] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/xfertiming-toc64.prg?format=raw xfertiming-toc64.prg]
||screenshot
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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;"|error
|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:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/ ../GEO-RAM] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/georam64.prg?format=raw georam64.prg]
||[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: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;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/ ../GEO-RAM] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/georamtest.prg?format=raw georamtest.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/ ../GEO-RAM] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/georamtest-auto.prg?format=raw georamtest-auto.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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/ ../GEO-RAM] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/newtest.prg?format=raw newtest.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/ ../GEO-RAM] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/newtest-auto.prg?format=raw newtest-auto.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: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:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:red;"|error
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../plus60k/ ../plus60k] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../plus60k/test.prg?format=raw test.prg]
||[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: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/../plus256k/ ../plus256k] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../plus256k/test.prg?format=raw test.prg]
||
|style="background:lightblue;"|timeout
|style="background:lightblue;"|timeout
|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/../drive/1541-testsuite/ ../drive/1541-testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/1541-testsuite/1541-testsuite.prg?format=raw 1541-testsuite.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/1541-testsuite/disks/pc64_1.d64?format=raw disks/pc64_1.d64])
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 11,078: Line 12,206:
|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:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/1541-testsuite/ ../drive/1541-testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/1541-testsuite/1541-testsuite.prg?format=raw 1541-testsuite.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/1541-testsuite/disks/pc64_2.d64?format=raw disks/pc64_2.d64])
||[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
Line 11,090: Line 12,223:
|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:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/defaults/ ../drive/defaults] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/defaults/defaults.prg?format=raw defaults.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/defaults/defaults.d64?format=raw defaults.d64])
||[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
Line 11,105: Line 12,245:
|style="background:lime;"|ok
|style="background:lime;"|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/diskchange/ ../drive/diskchange] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/diskchange/pollwp.prg?format=raw pollwp.prg]
||[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]
|style="background:lightgrey;"|interactive
||8580
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/diskid/ ../drive/diskid] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/diskid/diskid1.prg?format=raw diskid1.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/diskid/diskid.d64?format=raw diskid.d64])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 11,129: Line 12,264:
|style="background:lime;"|ok
|style="background:lime;"|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/iecdelay/ ../drive/iecdelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/iecdelay/iec-bus-delay-auto.prg?format=raw iec-bus-delay-auto.prg]
||[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
Line 11,141: Line 12,283:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/interrupts/ ../drive/interrupts] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/interrupts/timera.prg?format=raw timera.prg]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/interrupts/ ../drive/interrupts] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/interrupts/watchdog?format=raw watchdog]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/pwm/ ../drive/pwm] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/pwm/pwm.prg?format=raw pwm.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/ ../drive/rpm] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm.d64?format=raw rpm.d64]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/ ../drive/rpm] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm.g64?format=raw rpm.g64]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/ ../drive/rpm] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm.p64?format=raw rpm.p64]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner35.prg?format=raw scanner35.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan35.d64?format=raw scan35.d64])
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 11,223: Line 12,304:
|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:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner35e.prg?format=raw scanner35e.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan35err.d64?format=raw scan35err.d64])
||[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
Line 11,235: Line 12,319:
|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:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner40.prg?format=raw scanner40.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan40.d64?format=raw scan40.d64])
||[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
Line 11,247: Line 12,338:
|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/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner40e.prg?format=raw scanner40e.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan40err.d64?format=raw scan40err.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:red;"|fail
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner42.prg?format=raw scanner42.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan42.d64?format=raw scan42.d64])
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner42e.prg?format=raw scanner42e.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan42err.d64?format=raw scan42err.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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner35.prg?format=raw scanner35.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan35.g64?format=raw scan35.g64])
||[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
Line 11,297: Line 12,378:
|style="background:lime;"|ok
|style="background:lime;"|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner40.prg?format=raw scanner40.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan40.g64?format=raw scan40.g64])
||[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
Line 11,309: Line 12,397:
|style="background:lime;"|ok
|style="background:lime;"|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner42.prg?format=raw scanner42.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan42.g64?format=raw scan42.g64])
||[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
Line 11,321: Line 12,416:
|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/../drive/skew/ ../drive/skew] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/skew/skew1.prg?format=raw skew1.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/skew/skew.d64?format=raw skew.d64])
||
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/skew/ ../drive/skew] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/skew/skew1.prg?format=raw skew1.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/skew/skew.g64?format=raw skew.g64])
||[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: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:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/selftest/ ../drive/selftest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/selftest/selftest.prg?format=raw selftest.prg]
||[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
Line 11,355: Line 12,452:
|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:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via1.prg?format=raw via1.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:red;"|fail
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via2.prg?format=raw via2.prg]
||[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: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:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via3.prg?format=raw via3.prg]
||[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: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:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via3a.prg?format=raw via3a.prg]
||[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
Line 11,403: Line 12,528:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via4.prg?format=raw via4.prg]
||[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
Line 11,415: Line 12,547:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via5.prg?format=raw via5.prg]
||[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
Line 11,427: Line 12,566:
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via9.prg?format=raw via9.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 11,438: Line 12,571:
|style="background: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;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:lightgrey;"|n/a
|style="background:red;"|error
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via10.prg?format=raw via10.prg]
||[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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background: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:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via11.prg?format=raw via11.prg]
||
|style="background:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background: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:red;"|error
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via12.prg?format=raw via12.prg]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|error
|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:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via13.prg?format=raw via13.prg]
||[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:red;"|error
|style="background:red;"|error
|style="background:red;"|error
|style="background: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:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/writeprotect/ ../drive/writeprotect] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/writeprotect/write.d64?format=raw write.d64]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../vdrive/sa-check/ ../vdrive/sa-check] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../vdrive/sa-check/sacheck.prg?format=raw sacheck.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../vdrive/sa-check/sacheck.d64?format=raw sacheck.d64])
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
Line 11,511: Line 12,627:
|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
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportjoy/ ../userportjoy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportjoy/testjoy_c64.prg?format=raw testjoy_c64.prg]
||[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]
|style="background:lightgrey;"|interactive
||8580
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../mouse/ ../mouse] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../mouse/mouse-c64-1351.prg?format=raw mouse-c64-1351.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../mouse/ ../mouse] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../mouse/mouse-c64-pot.prg?format=raw mouse-c64-pot.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../propmouse/ ../propmouse] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../propmouse/prop_c64_amiga.prg?format=raw prop_c64_amiga.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../propmouse/ ../propmouse] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../propmouse/prop_c64_cx22.prg?format=raw prop_c64_cx22.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../propmouse/ ../propmouse] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../propmouse/prop_c64_st.prg?format=raw prop_c64_st.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/ ../keypad] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/coplin-c64.prg?format=raw coplin-c64.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/ ../keypad] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/cx85-c64.prg?format=raw cx85-c64.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/ ../keypad] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/rushware-c64.prg?format=raw rushware-c64.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/ ../keypad] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/cx21-c64.prg?format=raw cx21-c64.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/ ../keypad] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/cardkey-c64.prg?format=raw cardkey-c64.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../sfx_soundsampler/ ../sfx_soundsampler] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../sfx_soundsampler/c64-test.prg?format=raw c64-test.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../digimax/ ../digimax] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../digimax/modplay64.d81?format=raw modplay64.d81]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c64-cpm/ ../c64-cpm] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c64-cpm/c64-cbm.d64?format=raw c64-cbm.d64]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../audio-io/ ../audio-io] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../audio-io/audio-io-c64.prg?format=raw audio-io-c64.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportrtc/ ../userportrtc] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportrtc/testrtc-c64.prg?format=raw testrtc-c64.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c64-dqbb-emd.prg?format=raw c64-dqbb-emd.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:lightgrey;"|n/a
|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: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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c64-georam-emd.prg?format=raw c64-georam-emd.prg]
||[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: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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:red;"|error
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c64-reu-emd.prg?format=raw c64-reu-emd.prg]
||[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:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|error
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c64-ram-emd.prg?format=raw c64-ram-emd.prg]
||[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
Line 11,753: Line 12,701:
|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/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c64-ramcart-emd.prg?format=raw c64-ramcart-emd.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: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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c64-isepic-emd.prg?format=raw c64-isepic-emd.prg]
||[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: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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|}
=== VIC20 ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |Path
! |Type
! width="80pt" |xvic r35990
! width="80pt" |z64k (vic20) 20181202
|-
|-
||[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/vic20-pass.prg?format=raw vic20-pass.prg]
||[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
|-
||[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/vic20-fail.prg?format=raw vic20-fail.prg]
||
|style="background:red;"|error
|style="background:red;"|error
|-
||[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/vic20-pass.prg?format=raw vic20-pass.prg]
||screenshot
|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/vic20-fail.prg?format=raw vic20-fail.prg]
||screenshot
|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/../VIC20/via_pb7/ ../VIC20/via_pb7] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_pb7/main.prg?format=raw main.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_pb7/ ../VIC20/via_pb7] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_pb7/main-exp.prg?format=raw main-exp.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_t1crash/ ../VIC20/via_t1crash] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_t1crash/via1crash.prg?format=raw via1crash.prg]
||
|style="background: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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_t1crash/ ../VIC20/via_t1crash] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_t1crash/via2crash.prg?format=raw via2crash.prg]
||[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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_t1irqack/ ../VIC20/via_t1irqack] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_t1irqack/bandits-via1.prg?format=raw bandits-via1.prg]
||
|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/../VIC20/via_t1irqack/ ../VIC20/via_t1irqack] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_t1irqack/bandits-via2.prg?format=raw bandits-via2.prg]
||
|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/../VIC20/via_t1irqack/ ../VIC20/via_t1irqack] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_t1irqack/bandits-via1-8k.prg?format=raw bandits-via1-8k.prg]
||
|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/../VIC20/via_t1irqack/ ../VIC20/via_t1irqack] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_t1irqack/bandits-via2-8k.prg?format=raw bandits-via2-8k.prg]
||
|style="background: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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via1.prg?format=raw via1.prg]
||[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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via2.prg?format=raw via2.prg]
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via3.prg?format=raw via3.prg]
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via3a.prg?format=raw via3a.prg]
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via4.prg?format=raw via4.prg]
||
|style="background: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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via4a.prg?format=raw via4a.prg]
||[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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via5.prg?format=raw via5.prg]
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via5a.prg?format=raw via5a.prg]
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via9.prg?format=raw via9.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via10.prg?format=raw via10.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via11.prg?format=raw via11.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via12.prg?format=raw via12.prg]
||
|style="background:red;"|error
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via13.prg?format=raw via13.prg]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr00.prg?format=raw viasr00.prg]
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr00ifr.prg?format=raw viasr00ifr.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr04.prg?format=raw viasr04.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr04ifr.prg?format=raw viasr04ifr.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr08.prg?format=raw viasr08.prg]
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr08ifr.prg?format=raw viasr08ifr.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr0c.prg?format=raw viasr0c.prg]
||
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr0cifr.prg?format=raw viasr0cifr.prg]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr10.prg?format=raw viasr10.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr10ifr.prg?format=raw viasr10ifr.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr14.prg?format=raw viasr14.prg]
||
|style="background:red;"|error
|style="background:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr14ifr.prg?format=raw viasr14ifr.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr18.prg?format=raw viasr18.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr18ifr.prg?format=raw viasr18ifr.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr1c.prg?format=raw viasr1c.prg]
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr1cifr.prg?format=raw viasr1cifr.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr00exp.prg?format=raw viasr00exp.prg]
||
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr04exp.prg?format=raw viasr04exp.prg]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr08exp.prg?format=raw viasr08exp.prg]
||
|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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr0cexp.prg?format=raw viasr0cexp.prg]
||
|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:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr10exp.prg?format=raw viasr10exp.prg]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr14exp.prg?format=raw viasr14exp.prg]
||
|style="background:red;"|error
|style="background:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr18exp.prg?format=raw viasr18exp.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr1cexp.prg?format=raw viasr1cexp.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
|style="background:lightblue;"|timeout
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr00iex.prg?format=raw viasr00iex.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr04iex.prg?format=raw viasr04iex.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
|style="background:red;"|fail
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr08iex.prg?format=raw viasr08iex.prg]
|style="background:red;"|fail
||
|style="background:red;"|error
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr0ciex.prg?format=raw viasr0ciex.prg]
||[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:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr10iex.prg?format=raw viasr10iex.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr14iex.prg?format=raw viasr14iex.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr18iex.prg?format=raw viasr18iex.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr1ciex.prg?format=raw viasr1ciex.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_mapping/ ../VIC20/via_mapping] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_mapping/bugvicevia1.prg?format=raw bugvicevia1.prg]
||
|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/../VIC20/via_mapping/ ../VIC20/via_mapping] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_mapping/bugvicevia2.prg?format=raw bugvicevia2.prg]
||
|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/../interrupts/irqnmi/ ../interrupts/irqnmi] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnmi/irqnmi-vic20irq.prg?format=raw irqnmi-vic20irq.prg]
||
|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/../interrupts/irqnmi/ ../interrupts/irqnmi] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnmi/irqnmi-vic20nmi.prg?format=raw irqnmi-vic20nmi.prg]
||
|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/../interrupts/irqnmi/ ../interrupts/irqnmi] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnmi/irqnmi-vic20irq-8k.prg?format=raw irqnmi-vic20irq-8k.prg]
||[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:lime;"|ok
|style="background:lime;"|ok
|-
|style="background:lightgrey;"|n/a
||[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-vic20nmi-8k.prg?format=raw irqnmi-vic20nmi-8k.prg]
|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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/ ../GEO-RAM] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/georam20.prg?format=raw georam20.prg]
||
|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:lightblue;"|timeout
|style="background:red;"|fail
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportjoy/ ../userportjoy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportjoy/testjoy_vic20.prg?format=raw testjoy_vic20.prg]
||[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]
|style="background:lightgrey;"|interactive
||8580
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/joystick/ ../VIC20/joystick] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/joystick/joystick.prg?format=raw joystick.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/ ../keypad] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/coplin-vic20.prg?format=raw coplin-vic20.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/ ../keypad] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/cx21-vic20.prg?format=raw cx21-vic20.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/ ../keypad] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/cardkey-vic20.prg?format=raw cardkey-vic20.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/ ../keypad] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/cx85-vic20.prg?format=raw cx85-vic20.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/ ../keypad] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/rushware-vic20.prg?format=raw rushware-vic20.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/ultimem/ ../VIC20/ultimem] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/ultimem/banktest.prg?format=raw banktest.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/ultimem/ ../VIC20/ultimem] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/ultimem/ramtest.prg?format=raw ramtest.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../audio-io/ ../audio-io] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../audio-io/audio-io-vic20.prg?format=raw audio-io-vic20.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../sfx_soundsampler/ ../sfx_soundsampler] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../sfx_soundsampler/vic20-test.prg?format=raw vic20-test.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportrtc/ ../userportrtc] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportrtc/testrtc-vic20.prg?format=raw testrtc-vic20.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/vic20-rama-emd.prg?format=raw vic20-rama-emd.prg]
||
||
|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/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/vic20-georam-emd.prg?format=raw vic20-georam-emd.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|}
=== C128 ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |Path
! |Type
! width="80pt" |x128 r36014
! width="80pt" |z64k (c128) 20181202
|-
||[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/c128-pass.prg?format=raw c128-pass.prg]
||
|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/c128-fail.prg?format=raw c128-fail.prg]
||
|style="background:red;"|error
|style="background:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/ ../c128/2mhzVIC] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/2mhz-vic-hires.prg?format=raw 2mhz-vic-hires.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/ ../c128/2mhzVIC] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/2mhz-vic-multicolor.prg?format=raw 2mhz-vic-multicolor.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/ ../c128/2mhzVIC] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/2mhz-vic-extended.prg?format=raw 2mhz-vic-extended.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/ ../c128/2mhzVIC] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/timing-change0.prg?format=raw timing-change0.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/ ../c128/2mhzVIC] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/timing-change1.prg?format=raw timing-change1.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030tester2.0.prg?format=raw d030tester2.0.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/mmu/ ../c128/mmu] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/mmu/mmutest.prg?format=raw mmutest.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/mmu/ ../c128/mmu] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/mmu/mmutest2.prg?format=raw mmutest2.prg]
||
|style="background:red;"|error
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/mmu/ ../c128/mmu] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/mmu/mmuregister-should-not-mirror.prg?format=raw mmuregister-should-not-mirror.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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/mmu/ ../c128/mmu] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/mmu/p0h-is-set-after-p0l.prg?format=raw p0h-is-set-after-p0l.prg]
||[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:lime;"|ok
|style="background:lime;"|ok
|-
|style="background:lightgrey;"|n/a
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/mmu/ ../c128/mmu] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/mmu/p0h-rw-test.prg?format=raw p0h-rw-test.prg]
||
|style="background:lime;"|ok
|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/../c128/mmu/ ../c128/mmu] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/mmu/p1h-is-set-after-p1l.prg?format=raw p1h-is-set-after-p1l.prg]
||
|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/../c128/mmu/ ../c128/mmu] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/mmu/p1h-rw-test.prg?format=raw p1h-rw-test.prg]
||
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/ ../GEO-RAM] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/georam128.prg?format=raw georam128.prg]
||[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: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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../mouse/ ../mouse] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../mouse/mouse-c128-1351.prg?format=raw mouse-c128-1351.prg]
||[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]
|style="background:lightgrey;"|interactive
||6581
|style="background:lightgrey;"|manual
||
|style="background:lightgrey;"|manual
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../mouse/ ../mouse] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../mouse/mouse-c128-pot.prg?format=raw mouse-c128-pot.prg]
||[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:lightgrey;"|interactive
||
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportjoy/ ../userportjoy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportjoy/testjoy_c128.prg?format=raw testjoy_c128.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../audio-io/ ../audio-io] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../audio-io/audio-io-c128.prg?format=raw audio-io-c128.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128-cpm/ ../c128-cpm] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128-cpm/cpm3.d81?format=raw cpm3.d81]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../digimax/ ../digimax] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../digimax/modplay128.d81?format=raw modplay128.d81]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../sfx_soundsampler/ ../sfx_soundsampler] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../sfx_soundsampler/c128-test.prg?format=raw c128-test.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ramcart/ ../ramcart] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ramcart/rc128um.d64?format=raw rc128um.d64]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportrtc/ ../userportrtc] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportrtc/testrtc-c128.prg?format=raw testrtc-c128.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c128-efnram-emd.prg?format=raw c128-efnram-emd.prg]
||
||
|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: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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c128-ifnram-emd.prg?format=raw c128-ifnram-emd.prg]
||[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:lightgrey;"|n/a
|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
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c128-georam-emd.prg?format=raw c128-georam-emd.prg]
||[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:lightgrey;"|n/a
|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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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
|-
||[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: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:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|style="background:red;"|fail
|-
||[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:lightblue;"|timeout
|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
|-
||[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:lightblue;"|timeout
|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
|-
||[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:lightblue;"|timeout
|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
|-
||[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:lightblue;"|timeout
|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
|-
||[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-arramtest2-ar.prg?format=raw test-arramtest2-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:lightblue;"|timeout
|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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[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/npdummy.crt?format=raw npdummy.crt])
||
||
|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: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:red;"|fail
|-
||[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/npdummy.crt?format=raw npdummy.crt])
||
||
|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: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:red;"|fail
|-
||[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/npdummy.crt?format=raw npdummy.crt])
||
||
|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: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:red;"|fail
|-
||[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/npdummy.crt?format=raw npdummy.crt])
||
||
|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: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:red;"|fail
|-
||[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-arramtest2-ar.prg?format=raw test-arramtest2-ar.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/npdummy.crt?format=raw npdummy.crt])
||
||
|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: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:red;"|fail
|-
||[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.prg?format=raw test-ramdetect.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/rrdummy.crt?format=raw rrdummy.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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:red;"|fail
|-
||[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.prg?format=raw test-ramsizedetect.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/rrdummy.crt?format=raw rrdummy.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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:red;"|fail
|-
||[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.prg?format=raw test-ariotest1.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/rrdummy.crt?format=raw rrdummy.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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:red;"|fail
|-
||[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.prg?format=raw test-ariotest2.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/rrdummy.crt?format=raw rrdummy.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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:red;"|fail
|-
||[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-arramtest2.prg?format=raw test-arramtest2.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/rrdummy.crt?format=raw rrdummy.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|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:red;"|fail
|-
||[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.prg?format=raw test-ramdetect.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/nrdummy.crt?format=raw nrdummy.crt])
||
||
|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: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:red;"|fail
|-
||[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.prg?format=raw test-ramsizedetect.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/nrdummy.crt?format=raw nrdummy.crt])
||
||
|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: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:red;"|fail
|-
||[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.prg?format=raw test-ariotest1.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/nrdummy.crt?format=raw nrdummy.crt])
||
||
|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: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:red;"|fail
|-
||[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.prg?format=raw test-ariotest2.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/nrdummy.crt?format=raw nrdummy.crt])
||
||
|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: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:red;"|fail
|-
||[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-arramtest2-nr.prg?format=raw test-arramtest2-nr.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/aracidtest/nrdummy.crt?format=raw nrdummy.crt])
||
||
|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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ ../C64/carts] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/8kgame.crt?format=raw 8kgame.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightblue;"|timeout
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ ../C64/carts] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/16kgame.crt?format=raw 16kgame.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightblue;"|timeout
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ ../C64/carts] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/romram.crt?format=raw romram.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ ../C64/carts] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/rr-reu.crt?format=raw rr-reu.crt])
||
||
|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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/pagefox/ ../C64/carts/pagefox] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/pagefox/writeram-8000.crt?format=raw writeram-8000.crt])
||
||
|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:lightblue;"|timeout
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/pagefox/ ../C64/carts/pagefox] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/pagefox/writeram-a000.crt?format=raw writeram-a000.crt])
||
||
|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:lightblue;"|timeout
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/pagefox/ ../C64/carts/pagefox] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/pagefox/godot.crt?format=raw godot.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ef-test/ ../C64/carts/ef-test] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ef-test/ef_test.crt?format=raw ef_test.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/artest.crt?format=raw artest.crt])
||
||
|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: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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/nptest.crt?format=raw nptest.crt])
||
||
|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: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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/rrtest.crt?format=raw rrtest.crt])
||
||
|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: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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/rr2test.crt?format=raw rr2test.crt])
||
||
|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: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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/nrtest.crt?format=raw nrtest.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/nr2test.crt?format=raw nr2test.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/arramwrite.crt?format=raw arramwrite.crt])
||
||
|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: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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/npramwrite.crt?format=raw npramwrite.crt])
||
||
|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: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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/rrramwrite.crt?format=raw rrramwrite.crt])
||
||
|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: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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/rr2ramwrite.crt?format=raw rr2ramwrite.crt])
||
||
|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: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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/nrramwrite.crt?format=raw nrramwrite.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/nr2ramwrite.crt?format=raw nr2ramwrite.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/arramwrite.prg?format=raw arramwrite.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ardummy.crt?format=raw ardummy.crt])
||
||
|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: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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/safearramwrite.prg?format=raw safearramwrite.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ardummy.crt?format=raw ardummy.crt])
||
||
|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: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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/npramwrite.prg?format=raw npramwrite.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/npdummy.crt?format=raw npdummy.crt])
||
||
|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: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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/rrramwrite.prg?format=raw rrramwrite.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/rrdummy.crt?format=raw rrdummy.crt])
||
||
|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: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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/rr2ramwrite.prg?format=raw rr2ramwrite.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/rrdummy.crt?format=raw rrdummy.crt])
||
||
|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: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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/nrramwrite.prg?format=raw nrramwrite.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/nrdummy.crt?format=raw nrdummy.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/ ../C64/carts/nordicpower] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/nr2ramwrite.prg?format=raw nr2ramwrite.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/nordicpower/nrdummy.crt?format=raw nrdummy.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/retroreplay/ ../C64/carts/retroreplay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/retroreplay/allowbank0.prg?format=raw allowbank0.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/retroreplay/rrdummy.crt?format=raw rrdummy.crt])
||
||
|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: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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/retroreplay/ ../C64/carts/retroreplay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/retroreplay/allowbank1.prg?format=raw allowbank1.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/retroreplay/rrdummy.crt?format=raw rrdummy.crt])
||
||
|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: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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/retroreplay/ ../C64/carts/retroreplay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/retroreplay/writeonce.prg?format=raw writeonce.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/retroreplay/rrdummy.crt?format=raw rrdummy.crt])
||
||
|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: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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/supergames/ ../C64/carts/supergames] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/supergames/supergames.crt?format=raw supergames.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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:lightblue;"|timeout
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/tamtest/ ../C64/carts/tamtest] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/tamtest/tamtest.crt?format=raw tamtest.crt])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ultimax/ ../C64/carts/ultimax] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ultimax/8k-vic-ef.crt?format=raw 8k-vic-ef.crt])
||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: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/../C64/carts/ultimax/ ../C64/carts/ultimax] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ultimax/8k-vic-rr.crt?format=raw 8k-vic-rr.crt])
||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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|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/../C64/carts/ultimax/ ../C64/carts/ultimax] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ultimax/16k-vic-rr.crt?format=raw 16k-vic-rr.crt])
||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:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|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/../C64/carts/ultimax/ ../C64/carts/ultimax] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ultimax/16k-vic-ef.crt?format=raw 16k-vic-ef.crt])
||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: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/../C64/carts/ultimax/ ../C64/carts/ultimax] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ultimax/ultimax-vic-rr.crt?format=raw ultimax-vic-rr.crt])
||PAL
||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:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightgrey;"|n/a
|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/../C64/carts/ultimax/ ../C64/carts/ultimax] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/carts/ultimax/ultimax-vic-ef.crt?format=raw ultimax-vic-ef.crt])
||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: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/../REU/64ktransfer/ ../REU/64ktransfer] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/64ktransfer/toc64.prg?format=raw toc64.prg]
||
||
|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: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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/64ktransfer/ ../REU/64ktransfer] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/64ktransfer/toreu.prg?format=raw toreu.prg]
||
||
|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: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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/badoublewrite/ ../REU/badoublewrite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/badoublewrite/badoublewrite.prg?format=raw badoublewrite.prg]
||
||screenshot
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/bonzai/ ../REU/bonzai] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/bonzai/spritetiming.prg?format=raw spritetiming.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:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/bonzai/ ../REU/bonzai] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/bonzai/checkchar.prg?format=raw checkchar.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: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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/bonzai/ ../REU/bonzai] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/bonzai/reudetect.prg?format=raw reudetect.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:lightgrey;"|n/a
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/cpuport/ ../REU/cpuport] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/cpuport/cpuport.prg?format=raw cpuport.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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/detectsize/ ../REU/detectsize] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/detectsize/detectreu.prg?format=raw detectreu.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:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/ ../REU/floatingbus] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/floating.prg?format=raw floating.prg]
||
||
|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: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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/ ../REU/floatingbus] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/floating-a.prg?format=raw floating-a.prg]
||
||
|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: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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/ ../REU/floatingbus] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/floating-b.prg?format=raw floating-b.prg]
||
||
|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: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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/ ../REU/floatingbus] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/floating2.prg?format=raw floating2.prg] <small>(must always timeout)</small>
||
||
|style="background:lime;"|timeout (ok)
|style="background:lime;"|timeout (ok)
|style="background:lightgrey;"|n/a
|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)
|style="background:lightgrey;"|n/a
|style="background:red;"|ok (fail)
|style="background:lime;"|timeout (ok)
|style="background:lightgrey;"|n/a
|style="background:lime;"|timeout (ok)
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/ ../REU/floatingbus] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/floating3a.prg?format=raw floating3a.prg]
||
||
|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: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:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/ ../REU/floatingbus] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/floating3b.prg?format=raw floating3b.prg]
||
||
|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:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:lightblue;"|timeout
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/ ../REU/floatingbus] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/floating4a.prg?format=raw floating4a.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/ ../REU/floatingbus] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/floating4b.prg?format=raw floating4b.prg]
||
||
|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: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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/ ../REU/floatingbus] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/floating4c.prg?format=raw floating4c.prg]
||
||
|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: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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/ ../REU/floatingbus] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/floatingbus/floating4d.prg?format=raw floating4d.prg]
||
||
|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: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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/ ../REU/mirrors] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/mirrors128k.prg?format=raw mirrors128k.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/ ../REU/mirrors] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/mirrors256k.prg?format=raw mirrors256k.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/ ../REU/mirrors] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/mirrors512k.prg?format=raw mirrors512k.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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/ ../REU/mirrors] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/mirrors1m.prg?format=raw mirrors1m.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/ ../REU/mirrors] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/mirrors2m.prg?format=raw mirrors2m.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/ ../REU/mirrors] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/mirrors4m.prg?format=raw mirrors4m.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/ ../REU/mirrors] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/mirrors8m.prg?format=raw mirrors8m.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/ ../REU/mirrors] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/mirrors/mirrors16m.prg?format=raw mirrors16m.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/misc/ ../REU/misc] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/misc/twoblocks-auto.prg?format=raw twoblocks-auto.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:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/misc/ ../REU/misc] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/misc/twoblocks-ff00-auto.prg?format=raw twoblocks-ff00-auto.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:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu.exo.prg?format=raw quickreu.exo.prg] <small>(use 512k REU when running this test)</small>
||
||
|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:lightblue;"|timeout
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test1.prg?format=raw quickreu-test1.prg] <small>(use 512k REU when running this test)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test1-timing.prg?format=raw quickreu-test1-timing.prg] <small>(use 512k REU when running this test)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test2.prg?format=raw quickreu-test2.prg] <small>(use 512k REU when running this test)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test2-timing.prg?format=raw quickreu-test2-timing.prg] <small>(use 512k REU when running this test)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test3.prg?format=raw quickreu-test3.prg] <small>(use 512k REU when running this test)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test3-timing.prg?format=raw quickreu-test3-timing.prg] <small>(use 512k REU when running this test)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test4.prg?format=raw quickreu-test4.prg] <small>(use 512k REU when running this test)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test4-timing.prg?format=raw quickreu-test4-timing.prg] <small>(use 512k REU when running this test)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test5.prg?format=raw quickreu-test5.prg] <small>(use 512k REU when running this test)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test5-timing.prg?format=raw quickreu-test5-timing.prg] <small>(use 512k REU when running this test)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test6.prg?format=raw quickreu-test6.prg] <small>(use 512k REU when running this test)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test6-timing.prg?format=raw quickreu-test6-timing.prg] <small>(use 512k REU when running this test)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test7.prg?format=raw quickreu-test7.prg] <small>(use 512k REU when running this test)</small>
||
||
|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:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test7-timing.prg?format=raw quickreu-test7-timing.prg] <small>(use 512k REU when running this test)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test8.prg?format=raw quickreu-test8.prg] <small>(use 512k REU when running this test)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/ ../REU/QuickReuTest-1.1.1] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/QuickReuTest-1.1.1/quickreu-test8-timing.prg?format=raw quickreu-test8-timing.prg] <small>(use 512k REU when running this test)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/ramlink/ ../REU/ramlink] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/ramlink/reuverify128k.prg?format=raw reuverify128k.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/ramlink/ ../REU/ramlink] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/ramlink/reuverify256k.prg?format=raw reuverify256k.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|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:lightblue;"|timeout
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/ramlink/ ../REU/ramlink] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/ramlink/reuverify512k.prg?format=raw reuverify512k.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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/ramlink/ ../REU/ramlink] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/ramlink/reuverify1m.prg?format=raw reuverify1m.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/ramlink/ ../REU/ramlink] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/ramlink/reuverify2m.prg?format=raw reuverify2m.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/ramlink/ ../REU/ramlink] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/ramlink/reuverify4m.prg?format=raw reuverify4m.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/ramlink/ ../REU/ramlink] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/ramlink/reuverify8m.prg?format=raw reuverify8m.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming/ ../REU/reutiming] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming/reutiming.prg?format=raw reutiming.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:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/a.prg?format=raw a.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: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:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/a2.prg?format=raw a2.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: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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/b.prg?format=raw b.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: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:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/b2.prg?format=raw b2.prg]
||PAL
||screenshot
|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:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/b3.prg?format=raw b3.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: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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/c.prg?format=raw c.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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/c2.prg?format=raw c2.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|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:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/c3.prg?format=raw c3.prg]
||PAL
||screenshot
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|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: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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/d.prg?format=raw d.prg]
||PAL
||screenshot
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/d2.prg?format=raw d2.prg]
||PAL
||screenshot
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/d3.prg?format=raw d3.prg]
||PAL
||screenshot
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|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: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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/e.prg?format=raw e.prg]
||PAL
||
|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
|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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/e2.prg?format=raw e2.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:red;"|fail
|style="background:red;"|fail
|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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/e3.prg?format=raw e3.prg]
||PAL
||
|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
|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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/e4.prg?format=raw e4.prg]
||PAL
||
|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
|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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/e5.prg?format=raw e5.prg]
||PAL
||
|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
|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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/e6.prg?format=raw e6.prg]
||PAL
||
|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
|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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/f.prg?format=raw f.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:red;"|fail
|style="background:red;"|fail
|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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/f2.prg?format=raw f2.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: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:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/f3.prg?format=raw f3.prg]
||PAL
||
|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
|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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/f4.prg?format=raw f4.prg]
||PAL
||
|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
|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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/g.prg?format=raw g.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:red;"|fail
|style="background:red;"|fail
|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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/g2.prg?format=raw g2.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:red;"|fail
|style="background:red;"|fail
|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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/g3.prg?format=raw g3.prg]
||PAL
||
|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
|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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/g4.prg?format=raw g4.prg]
||PAL
||
|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
|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
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/e-m2.prg?format=raw e-m2.prg]
||PAL
||
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/e2-m2.prg?format=raw e2-m2.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:red;"|fail
|style="background:red;"|fail
|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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/e3-m2.prg?format=raw e3-m2.prg]
||PAL
||
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/e4-m2.prg?format=raw e4-m2.prg]
||PAL
||
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/e5-m2.prg?format=raw e5-m2.prg]
||PAL
||
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/e6-m2.prg?format=raw e6-m2.prg]
||PAL
||
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/f-m2.prg?format=raw f-m2.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:red;"|fail
|style="background:red;"|fail
|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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/f2-m2.prg?format=raw f2-m2.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: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:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/f3-m2.prg?format=raw f3-m2.prg]
||PAL
||
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/f4-m2.prg?format=raw f4-m2.prg]
||PAL
||
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/g-m2.prg?format=raw g-m2.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:red;"|fail
|style="background:red;"|fail
|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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/g2-m2.prg?format=raw g2-m2.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:red;"|fail
|style="background:red;"|fail
|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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/g3-m2.prg?format=raw g3-m2.prg]
||PAL
||
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/ ../REU/reutiming2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/reutiming2/g4-m2.prg?format=raw g4-m2.prg]
||PAL
||
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/rmw-trigger/ ../REU/rmw-trigger] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/rmw-trigger/rmwtrigger-rom.prg?format=raw rmwtrigger-rom.prg]
||
||
|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:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/rmw-trigger/ ../REU/rmw-trigger] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/rmw-trigger/rmwtrigger-ram.prg?format=raw rmwtrigger-ram.prg]
||
||
|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:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/ ../REU/xfertiming] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/xfertiming-cmp.prg?format=raw xfertiming-cmp.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: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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/ ../REU/xfertiming] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/xfertiming-swap.prg?format=raw xfertiming-swap.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: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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/ ../REU/xfertiming] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/xfertiming-swap2.prg?format=raw xfertiming-swap2.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: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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/ ../REU/xfertiming] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/xfertiming-toreu.prg?format=raw xfertiming-toreu.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: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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/ ../REU/xfertiming] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../REU/xfertiming/xfertiming-toc64.prg?format=raw xfertiming-toc64.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: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:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/ ../GEO-RAM] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/georam64.prg?format=raw georam64.prg]
||
||
|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:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/ ../GEO-RAM] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/georamtest-auto.prg?format=raw georamtest-auto.prg]
||
||
|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:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/ ../GEO-RAM] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/newtest-auto.prg?format=raw newtest-auto.prg]
||
||
|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:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../plus60k/ ../plus60k] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../plus60k/test.prg?format=raw test.prg]
||
||
|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: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/../plus60k/ ../plus60k] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../plus60k/checkregister.prg?format=raw checkregister.prg]
||
||
|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: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/../plus256k/ ../plus256k] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../plus256k/test.prg?format=raw test.prg]
||
||
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|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:lightblue;"|timeout
|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/../drive/1541-testsuite/ ../drive/1541-testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/1541-testsuite/1541-testsuite.prg?format=raw 1541-testsuite.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/1541-testsuite/disks/pc64_1.d64?format=raw disks/pc64_1.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:lime;"|ok
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/1541-testsuite/ ../drive/1541-testsuite] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/1541-testsuite/1541-testsuite.prg?format=raw 1541-testsuite.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/1541-testsuite/disks/pc64_2.d64?format=raw disks/pc64_2.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:lime;"|ok
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/diskid/ ../drive/diskid] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/diskid/diskid1.prg?format=raw diskid1.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/diskid/diskid.d64?format=raw diskid.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:red;"|fail
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/format/ ../drive/format] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/format/format.prg?format=raw format.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/format/format.d64?format=raw format.d64]) <small>( make sure format.d64 was freshly created - the test will format it)</small>
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background: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:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/hls-protection/ ../drive/hls-protection] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/hls-protection/hlstest.prg?format=raw hlstest.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/hls-protection/hlstest.g64?format=raw hlstest.g64])
||
||
|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:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/iecdelay/ ../drive/iecdelay] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/iecdelay/iec-bus-delay-auto.prg?format=raw iec-bus-delay-auto.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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/inertia/ ../drive/inertia] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/inertia/drive-emu-check.prg?format=raw drive-emu-check.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/inertia/drive-emu-check.d64?format=raw drive-emu-check.d64])
||
||
|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:lightgrey;"|n/a
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/interrupts/ ../drive/interrupts] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/interrupts/timera.prg?format=raw timera.prg] <small>(results depend on the physical properties of the drive and vary between real drives/mechs too.)</small>
||
||
|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: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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/ ../drive/rpm] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm1.prg?format=raw rpm1.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm.d64?format=raw rpm.d64])
||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:red;"|fail
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/ ../drive/rpm] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm1.prg?format=raw rpm1.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm.g64?format=raw rpm.g64])
||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:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/ ../drive/rpm] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm1.prg?format=raw rpm1.prg]
||PAL
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:lightblue;"|timeout
|style="background:lightgrey;"|n/a
|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: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/../drive/rpm/ ../drive/rpm] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm2.prg?format=raw rpm2.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm.d64?format=raw rpm.d64])
||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:red;"|fail
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/ ../drive/rpm] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm2.prg?format=raw rpm2.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm.g64?format=raw rpm.g64])
||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:lime;"|ok
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/ ../drive/rpm] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm2.prg?format=raw rpm2.prg]
||PAL
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:lightblue;"|timeout
|style="background:lightgrey;"|n/a
|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: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/../drive/rpm/ ../drive/rpm] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm3.prg?format=raw rpm3.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm.d64?format=raw rpm.d64])
||PAL
||
|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:red;"|fail
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/ ../drive/rpm] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm3.prg?format=raw rpm3.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm.g64?format=raw rpm.g64])
||PAL
||
|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:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|style="background:lightblue;"|timeout
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/ ../drive/rpm] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/rpm/rpm3.prg?format=raw rpm3.prg]
||PAL
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|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: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/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner35.prg?format=raw scanner35.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan35.d64?format=raw scan35.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:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner35e.prg?format=raw scanner35e.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan35err.d64?format=raw scan35err.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:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner40.prg?format=raw scanner40.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan40.d64?format=raw scan40.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:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner40e.prg?format=raw scanner40e.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan40err.d64?format=raw scan40err.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:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner42.prg?format=raw scanner42.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan42.d64?format=raw scan42.d64])
||
||
|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:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner42e.prg?format=raw scanner42e.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan42err.d64?format=raw scan42err.d64])
||
||
|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:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner35.prg?format=raw scanner35.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan35.g64?format=raw scan35.g64])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner40.prg?format=raw scanner40.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan40.g64?format=raw scan40.g64])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner42.prg?format=raw scanner42.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan42.g64?format=raw scan42.g64])
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/skew/ ../drive/skew] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/skew/skew1.prg?format=raw skew1.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/skew/skew.d64?format=raw skew.d64])
||
||
|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: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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/skew/ ../drive/skew] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/skew/skew1.prg?format=raw skew1.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/skew/skew.g64?format=raw skew.g64])
||
||
|style="background:lime;"|ok
|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: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
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/selftest/ ../drive/selftest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/selftest/selftest.prg?format=raw selftest.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:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/openbus/ ../drive/openbus] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/openbus/openbus.prg?format=raw openbus.prg]
||
||
|style="background: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:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via1.prg?format=raw via1.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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via2.prg?format=raw via2.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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via3.prg?format=raw via3.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:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via3a.prg?format=raw via3a.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:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via4.prg?format=raw via4.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:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via5.prg?format=raw via5.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:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via9.prg?format=raw via9.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:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via10.prg?format=raw via10.prg]
||
||
|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:red;"|fail
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via11.prg?format=raw via11.prg]
||
||
|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:red;"|fail
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via12.prg?format=raw via12.prg]
||
||
|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:red;"|fail
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via13.prg?format=raw via13.prg]
||
||
|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:red;"|fail
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via14.prg?format=raw via14.prg]
||
||
|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: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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via20.prg?format=raw via20.prg]
||
||
|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:red;"|fail
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/ ../drive/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/viavarious/via21.prg?format=raw via21.prg]
||
||
|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:red;"|fail
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../vdrive/bustakeover/ ../vdrive/bustakeover] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../vdrive/bustakeover/bustakeover.prg?format=raw bustakeover.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../vdrive/bustakeover/bustakeover.d64?format=raw bustakeover.d64])
||
||
|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:lightgrey;"|n/a
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../vdrive/sa-check/ ../vdrive/sa-check] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../vdrive/sa-check/sacheck.prg?format=raw sacheck.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../vdrive/sa-check/sacheck.d64?format=raw sacheck.d64])
||
||
|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:red;"|fail
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c64-dqbb-emd.prg?format=raw c64-dqbb-emd.prg]
||
||
|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: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/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c64-georam-emd.prg?format=raw c64-georam-emd.prg]
||
||
|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:red;"|fail
|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/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c64-reu-emd.prg?format=raw c64-reu-emd.prg]
||
||
|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:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c64-ramcart-emd.prg?format=raw c64-ramcart-emd.prg]
||
||
|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: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/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c64-isepic-emd.prg?format=raw c64-isepic-emd.prg]
||
||
|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: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
|}
<small>1412 tests (504 not shown)</small>
=== VIC20 ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |
! | tested
! | passed
! | percent
! |
|-
||xvic r44764
||68
||68
||100%
||{{Progress|100|68|68|}}
|-
||z64k (vic20) 22 May 2023
||66
||64
||96%
||{{Progress|96|64|66|}}
|-
||kernal64 (vic20) 1.8.4_b1
||68
||48
||70%
||{{Progress|70|48|68|}}
|-
||cham20 20201130
||45
||21
||46%
||{{Progress|46|21|45|}}
|-
|}
 
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |Path
! |Chip
! |Type
! width="80pt" |xvic r44764
! width="80pt" |z64k (vic20) 22 May 2023
! width="80pt" |kernal64 (vic20) 1.8.4_b1
! width="80pt" |cham20 20201130
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_pb7/ ../VIC20/via_pb7] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_pb7/main.prg?format=raw main.prg]
||
||
|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/../VIC20/via_pb7/ ../VIC20/via_pb7] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_pb7/main-exp.prg?format=raw main-exp.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_t1irqack/ ../VIC20/via_t1irqack] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_t1irqack/bandits-via1.prg?format=raw bandits-via1.prg]
||
||
|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/../VIC20/via_t1irqack/ ../VIC20/via_t1irqack] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_t1irqack/bandits-via2.prg?format=raw bandits-via2.prg]
||
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via3.prg?format=raw via3.prg]
||
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via3a.prg?format=raw via3a.prg]
||
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via4.prg?format=raw via4.prg]
||
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via4a.prg?format=raw via4a.prg]
||
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via5.prg?format=raw via5.prg]
||
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via9.prg?format=raw via9.prg]
||
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via10.prg?format=raw via10.prg]
||
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via11.prg?format=raw via11.prg]
||
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via12.prg?format=raw via12.prg]
||
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via13.prg?format=raw via13.prg]
||
||
|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/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via20.prg?format=raw via20.prg]
||
||
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/ ../VIC20/viavarious] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/viavarious/via21.prg?format=raw via21.prg]
||
||
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr00.prg?format=raw viasr00.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr00ifr.prg?format=raw viasr00ifr.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr04.prg?format=raw viasr04.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr04ifr.prg?format=raw viasr04ifr.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr08.prg?format=raw viasr08.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr08ifr.prg?format=raw viasr08ifr.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr0c.prg?format=raw viasr0c.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr0cifr.prg?format=raw viasr0cifr.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr10.prg?format=raw viasr10.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr10ifr.prg?format=raw viasr10ifr.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr14.prg?format=raw viasr14.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr14ifr.prg?format=raw viasr14ifr.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr18.prg?format=raw viasr18.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr18ifr.prg?format=raw viasr18ifr.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr1c.prg?format=raw viasr1c.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr1cifr.prg?format=raw viasr1cifr.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr04exp.prg?format=raw viasr04exp.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr08exp.prg?format=raw viasr08exp.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr10exp.prg?format=raw viasr10exp.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr14exp.prg?format=raw viasr14exp.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr18exp.prg?format=raw viasr18exp.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr00iex.prg?format=raw viasr00iex.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr04iex.prg?format=raw viasr04iex.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr08iex.prg?format=raw viasr08iex.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr0ciex.prg?format=raw viasr0ciex.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr10iex.prg?format=raw viasr10iex.prg]
||
||
|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/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr14iex.prg?format=raw viasr14iex.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr18iex.prg?format=raw viasr18iex.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/ ../VIC20/via_sr] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../VIC20/via_sr/viasr1ciex.prg?format=raw viasr1ciex.prg]
||
||
|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/../interrupts/irqnmi/ ../interrupts/irqnmi] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnmi/irqnmi-vic20irq.prg?format=raw irqnmi-vic20irq.prg]
||
||
|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/../interrupts/irqnmi/ ../interrupts/irqnmi] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnmi/irqnmi-vic20nmi.prg?format=raw irqnmi-vic20nmi.prg]
||
||
|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/../interrupts/irqnmi/ ../interrupts/irqnmi] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnmi/irqnmi-vic20irq-8k.prg?format=raw irqnmi-vic20irq-8k.prg]
||
||
|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/../interrupts/irqnmi/ ../interrupts/irqnmi] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../interrupts/irqnmi/irqnmi-vic20nmi-8k.prg?format=raw irqnmi-vic20nmi-8k.prg]
||
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/ ../GEO-RAM] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/georam20.prg?format=raw georam20.prg]
||
||
|style="background:lime;"|ok
|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/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/vic20-georam-emd.prg?format=raw vic20-georam-emd.prg]
||
||
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|}
<small>80 tests (29 not shown)</small>
=== C128 ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |
! | tested
! | passed
! | percent
! |
|-
||z64k (c128) 22 May 2023
||140
||135
||96%
||{{Progress|96|135|140|}}
|-
||x128 r44764
||145
||105
||72%
||{{Progress|72|105|145|}}
|-
||kernal64 (c128) 1.8.4_b1
||142
||103
||72%
||{{Progress|72|103|142|}}
|-
|}
 
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |Path
! |Chip
! |Type
! width="80pt" |z64k (c128) 22 May 2023
! width="80pt" |x128 r44764
! width="80pt" |kernal64 (c128) 1.8.4_b1
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/ ../c128/2mhzVIC] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/2mhz-vic-hires.prg?format=raw 2mhz-vic-hires.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/ ../c128/2mhzVIC] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/2mhz-vic-multicolor.prg?format=raw 2mhz-vic-multicolor.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/ ../c128/2mhzVIC] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/2mhz-vic-extended.prg?format=raw 2mhz-vic-extended.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/ ../c128/2mhzVIC] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/2mhzVIC/timing-change0.prg?format=raw timing-change0.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/burstmode/ ../c128/burstmode] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/burstmode/burstcheck0.prg?format=raw burstcheck0.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/burstmode/burstcheck.d64?format=raw burstcheck.d64])
||
||
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-2mhzdec.prg?format=raw d030-2mhzdec.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-2mhz_hb_80.prg?format=raw d030-2mhz_hb_80.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-2mhzmode0.prg?format=raw d030-2mhzmode0.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-2mhzmode1.prg?format=raw d030-2mhzmode1.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-2mhzmode2.prg?format=raw d030-2mhzmode2.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-2mhzmode3.prg?format=raw d030-2mhzmode3.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-2mhzmode4.prg?format=raw d030-2mhzmode4.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-2mhzmode5.prg?format=raw d030-2mhzmode5.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-2mhzmode6.prg?format=raw d030-2mhzmode6.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-2mhzmode7.prg?format=raw d030-2mhzmode7.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-173_02_00.prg?format=raw d030-173_02_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-1b2_02_00.prg?format=raw d030-1b2_02_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-1f1_02_00.prg?format=raw d030-1f1_02_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-230_02_00.prg?format=raw d030-230_02_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-26f_02_00.prg?format=raw d030-26f_02_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-26f_02_88.prg?format=raw d030-26f_02_88.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-2ae_02_00.prg?format=raw d030-2ae_02_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-2ed_02_00.prg?format=raw d030-2ed_02_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-32c_02_00.prg?format=raw d030-32c_02_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-173_03_00.prg?format=raw d030-173_03_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-1b2_03_00.prg?format=raw d030-1b2_03_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-1f1_03_00.prg?format=raw d030-1f1_03_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-230_03_00.prg?format=raw d030-230_03_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-26f_03_00.prg?format=raw d030-26f_03_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-26f_03_88.prg?format=raw d030-26f_03_88.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-2ae_03_00.prg?format=raw d030-2ae_03_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-2ed_03_00.prg?format=raw d030-2ed_03_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-32c_03_00.prg?format=raw d030-32c_03_00.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-vadjust1.prg?format=raw d030-vadjust1.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-vadjust10.prg?format=raw d030-vadjust10.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-vadjust20.prg?format=raw d030-vadjust20.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-vadjust25.prg?format=raw d030-vadjust25.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/ ../c128/d030tester] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/d030tester/d030-vadjust30.prg?format=raw d030-vadjust30.prg]
||PAL
||screenshot
|style="background:lime;"|ok
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/ram0001mmu/ ../c128/ram0001mmu] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/ram0001mmu/c128modezp0001.prg?format=raw c128modezp0001.prg]
||
||
|style="background:lightblue;"|timeout
|style="background:lightblue;"|timeout
|style="background:lightblue;"|timeout
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/z80/mmu_zp_sp/ ../c128/z80/mmu_zp_sp] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../c128/z80/mmu_zp_sp/tstz80bk.prg?format=raw tstz80bk.prg]
||
||
|style="background:red;"|fail
|style="background:red;"|fail
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner1571-35.prg?format=raw scanner1571-35.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan35.d71?format=raw scan35.d71]) <small>(not 100% stable - rerun on failure)</small>
||
||
|style="background:red;"|fail
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner1571-35e.prg?format=raw scanner1571-35e.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan35err.d71?format=raw scan35err.d71]) <small>(not 100% stable - rerun on failure)</small>
||
||
|style="background:red;"|fail
|style="background:lightblue;"|timeout
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/ ../drive/scanner] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scanner1571-35.prg?format=raw scanner1571-35.prg] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../drive/scanner/scan35.g71?format=raw scan35.g71]) <small>(not 100% stable - rerun on failure)</small>
||
||
|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/../GEO-RAM/ ../GEO-RAM] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../GEO-RAM/georam128.prg?format=raw georam128.prg]
||
||
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c128-ifnram-emd.prg?format=raw c128-ifnram-emd.prg]
||
||
|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/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c128-georam-emd.prg?format=raw c128-georam-emd.prg]
||
||
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c128-ramcart-emd.prg?format=raw c128-ramcart-emd.prg]
||
||
|style="background:lightgrey;"|n/a
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|}
<small>176 tests (129 not shown)</small>
=== PLUS4 ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |
! | tested
! | passed
! | percent
! |
|-
||xplus4 r44764
||3
||3
||100%
||{{Progress|100|3|3|}}
|-
|}
 
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |Path
! |Chip
! |Type
! width="80pt" |xplus4 r44764
|}
<small>9 tests (9 not shown)</small>
=== PET ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |
! | tested
! | passed
! | percent
! |
|-
||xpet r42777
||16
||12
||75%
||{{Progress|75|12|16|}}
|-
|}
 
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |Path
! |Chip
! |Type
! width="80pt" |xpet r42777
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CRTC/ ../CRTC] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CRTC/crtc0.prg?format=raw crtc0.prg]
||
||screenshot
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CRTC/ ../CRTC] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CRTC/crtc3.prg?format=raw crtc3.prg]
||
||screenshot
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CRTC/ ../CRTC] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CRTC/crtc10.prg?format=raw crtc10.prg]
||
||screenshot
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CRTC/ ../CRTC] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CRTC/crtc13.prg?format=raw crtc13.prg]
||
||screenshot
|style="background:red;"|fail
|}
<small>21 tests (17 not shown)</small>
=== DTV ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |
! | tested
! | passed
! | percent
! |
|-
||x64dtv r44764
||267
||245
||91%
||{{Progress|91|245|267|}}
|-
|}
 
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |Path
! |Chip
! |Type
! width="80pt" |x64dtv r44764
|-
||[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-dtv.prg?format=raw shsay-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw trap1-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw trap2-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw trap3-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw trap4-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw trap5-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw trap6-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw trap7-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw trap9-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw trap10-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw trap11-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw trap12-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw trap14-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw trap15-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw trap16-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw trap17-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw cpuport-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw cputiming-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw irq-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw nmi-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw cia2pb6-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|-
||[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-dtv.prg?format=raw cia2pb7-dtv.prg] <small>(broken test)</small>
||
||
|style="background:red;"|fail
|}
<small>278 tests (256 not shown)</small>
=== SCPU ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |
! | tested
! | passed
! | percent
! |
|-
||kernal64 (scpu64) 1.8.4_b1
||8
||6
||75%
||{{Progress|75|6|8|}}
|-
||xscpu64 r44764
||9
||4
||44%
||{{Progress|44|4|9|}}
|-
|}
 
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |Path
! |Chip
! |Type
! width="80pt" |kernal64 (scpu64) 1.8.4_b1
! width="80pt" |xscpu64 r44764
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SCPU/scputest/ ../SCPU/scputest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SCPU/scputest/scputest-0.prg?format=raw scputest-0.prg]
||
||
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SCPU/scputest/ ../SCPU/scputest] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../SCPU/scputest/scputest-1.prg?format=raw scputest-1.prg]
||
||
|style="background:red;"|fail
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c64-dqbb-emd.prg?format=raw c64-dqbb-emd.prg]
||
||
|style="background:lightgrey;"|n/a
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c64-georam-emd.prg?format=raw c64-georam-emd.prg]
||
||
|style="background:lime;"|ok
|style="background:red;"|fail
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c64-reu-emd.prg?format=raw c64-reu-emd.prg]
||
||
|style="background:lime;"|ok
|style="background:red;"|fail
|}
<small>10 tests (5 not shown)</small>
=== CBM5x0 ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |
! | tested
! | passed
! | percent
! |
|-
||xcbm5x0 r44764
||2
||2
||100%
||{{Progress|100|2|2|}}
|-
|}
 
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |Path
! |Chip
! |Type
! width="80pt" |xcbm5x0 r44764
|}
<small>6 tests (6 not shown)</small>
=== CBM2 ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |
! | tested
! | passed
! | percent
! |
|-
||xcbm2 r44764
||2
||2
||100%
||{{Progress|100|2|2|}}
|-
||kernal64 (cbm2) 1.8.4_b1
||2
||2
||100%
||{{Progress|100|2|2|}}
|-
|}
 
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |Path
! |Chip
! |Type
! width="80pt" |xcbm2 r44764
! width="80pt" |kernal64 (cbm2) 1.8.4_b1
|}
<small>7 tests (7 not shown)</small>
=== SID ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |
! | tested
! | passed
! | percent
! |
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c128-ram-emd.prg?format=raw c128-ram-emd.prg]
||vsid r44764
||
||2
|style="background:lime;"|ok
||2
|style="background:lime;"|ok
||100%
|-
||{{Progress|100|2|2|}}
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c128-ram2-emd.prg?format=raw c128-ram2-emd.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c128-ramcart-emd.prg?format=raw c128-ramcart-emd.prg]
||
|style="background:lime;"|ok
|style="background:lightgrey;"|n/a
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c128-reu-emd.prg?format=raw c128-reu-emd.prg]
||
|style="background:lime;"|ok
|style="background:lime;"|ok
|-
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c128-vdc-emd.prg?format=raw c128-vdc-emd.prg]
||
|style="background:lime;"|ok
|style="background:red;"|error
|}
|}


=== SID ===
=== PLUS4 ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |Path
! |Path
! |Chip
! |Type
! |Type
! width="80pt" |xplus4 r35990
! width="80pt" |vsid r44764
|-
||[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/plus4-pass.prg?format=raw plus4-pass.prg]
||
|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/plus4-fail.prg?format=raw plus4-fail.prg]
||
|style="background:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportjoy/ ../userportjoy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportjoy/testjoy_plus4.prg?format=raw testjoy_plus4.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/ ../keypad] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/coplin-plus4.prg?format=raw coplin-plus4.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/ ../keypad] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/cx85-plus4.prg?format=raw cx85-plus4.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/ ../keypad] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/rushware-plus4.prg?format=raw rushware-plus4.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/ ../keypad] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../keypad/cardkey-plus4.prg?format=raw cardkey-plus4.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../audio-io/ ../audio-io] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../audio-io/audio-io-plus4.prg?format=raw audio-io-plus4.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/c16-ram-emd.prg?format=raw c16-ram-emd.prg]
||
|style="background:lime;"|ok
|}
=== PET ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |Path
! |Type
! width="80pt" |xpet r35990
|-
||[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/pet-pass.prg?format=raw pet-pass.prg]
||
|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/pet-fail.prg?format=raw pet-fail.prg]
||
|style="background:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportjoy/ ../userportjoy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportjoy/testjoy_pet.prg?format=raw testjoy_pet.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../audio-io/ ../audio-io] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../audio-io/audio-io-pet.prg?format=raw audio-io-pet.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportrtc/ ../userportrtc] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportrtc/testrtc-pet.prg?format=raw testrtc-pet.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|}
=== DTV ===
=== SCPU ===
=== CBM5x0 ===
=== CBM2 ===
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0"
! |Path
! |Type
! width="80pt" |xcbm2 r35990
|-
||[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-pass.prg?format=raw cbm610-pass.prg]
||
|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/cbm610-fail.prg?format=raw cbm610-fail.prg]
||
|style="background:red;"|error
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CBM2/ ../CBM2] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../CBM2/cbm2-burnin.d80?format=raw cbm2-burnin.d80]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportjoy/ ../userportjoy] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportjoy/testjoy_cbm610.prg?format=raw testjoy_cbm610.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../audio-io/ ../audio-io] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../audio-io/audio-io-cbm6x0.prg?format=raw audio-io-cbm6x0.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportrtc/ ../userportrtc] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../userportrtc/testrtc-cbm610.prg?format=raw testrtc-cbm610.prg]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|-
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/ ../memory-expansions] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../memory-expansions/memory-tests.d64?format=raw memory-tests.d64]
|style="background:lightgrey;"|interactive
|style="background:lightgrey;"|manual
|}
|}
<small>2 tests (2 not shown)</small>

Latest revision as of 17:05, 4 December 2023

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:

need to ask authors of: MESS (C-64, VIC20, PET), Pfau Zeh (VIC20), YAPE (Plus4), jsidplay2 (C64)

... and the following FPGA based reimplementations:

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!

readme

other related test suites

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.

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 19/11/2023 19.11.2023
hoxs64 1.1.2.3 (March 7th, 2023) 19.11.2023 Has a problem with running extra .prg files when a cartridge is mounted, reported here.
emu64 git 2023/11/22 20.11.2023 a bunch of drive tests fail with timeout. Strange problem related to autostarting programs reported here
kernal64 (c64) 1.8.4b1 (Sep 3rd, 2023) 20.11.2023 Strange issues with the return code of some tests, reported here. (fixed)
kernal64 (c128/c64) 1.8.4b1 (Sep 3rd, 2023) 20.11.2023
kernal64 (c128) 1.8.4b1 (Sep 3rd, 2023) 20.11.2023
kernal64 (scpu64) 1.8.4b1 (Sep 3rd, 2023) 20.11.2023
kernal64 (cbm2) 1.8.4b1 (Sep 3rd, 2023) 20.11.2023
z64k (c64) 22 May 2023 20.11.2023 occasional hang at shutdown, reported here (seems fixed)
z64k (c128/c64) 22 May 2023 20.11.2023
z64k (vic20) 22 May 2023 20.11.2023
z64k (c128) 22 May 2023 20.11.2023
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.7.1 r44764 20.11.2023
x64 3.7.1 r44764 20.11.2023
x128 (c64) 3.7.1 r44764 20.11.2023
xvic 3.7.1 r44764 20.11.2023
x128 3.7.1 r44764 20.11.2023
xplus4 3.7.1 r44764 20.11.2023
xpet 3.7.1 r44764 20.11.2023
x64dtv 3.7.1 r44764 20.11.2023
xscpu64 3.7.1 r44764 20.11.2023
xcbm5x0 3.7.1 r44764 20.11.2023
xcbm2 3.7.1 r44764 20.11.2023
vsid 3.7.1 r44764 20.11.2023

Results

C64

tested passed percent
denise git 19.11.2023 1269 1241 97%

97% (1,241 of 1,269)

x64sc r44764 1275 1198 93%

93% (1,198 of 1,275)

hoxs64 1.1.2.3 955 881 92%

92% (881 of 955)

z64k (c64) 22 May 2023 1223 1112 90%

90% (1,112 of 1,223)

TC64 9q (cartridge) 985 887 90%

90% (887 of 985)

z64k (c128/c64) 22 May 2023 1223 1061 86%

86% (1,061 of 1,223)

x128 (c64) r44764 1230 1035 84%

84% (1,035 of 1,230)

x64 r44764 1275 1069 83%

83% (1,069 of 1,275)

kernal64 (c64) 1.8.4_b1 1179 902 76%

76% (902 of 1,179)

kernal64 (c128/c64) 1.8.4_b1 1179 897 76%

76% (897 of 1,179)

micro64 1.00.2018.03.16 (build 719) 1062 808 76%

76% (808 of 1,062)

TC64 9q (standalone) 1182 868 73%

73% (868 of 1,182)

U64 1.42 1051 744 70%

70% (744 of 1,051)

yace 2-2-0-47 860 430 50%

50% (430 of 860)

emu64 20231120 1106 493 44%

44% (493 of 1,106)

Path Chip Type denise git 19.11.2023 x64sc r44764 hoxs64 1.1.2.3 z64k (c64) 22 May 2023 TC64 9q (cartridge) z64k (c128/c64) 22 May 2023 x128 (c64) r44764 x64 r44764 kernal64 (c64) 1.8.4_b1 kernal64 (c128/c64) 1.8.4_b1 micro64 1.00.2018.03.16 (build 719) TC64 9q (standalone) U64 1.42 yace 2-2-0-47 emu64 20231120
./selftest c64-fail.prg (must always fail) fail (ok) fail (ok) fail (ok) fail (ok) fail (ok) fail (ok) fail (ok) fail (ok) fail (ok) fail (ok) fail (ok) fail (ok) ok (fail) fail (ok) fail (ok)
./selftest (c64-fail.crt) (must always fail) 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 timeout fail (ok)
./selftest (c64-pass.crt) ok ok ok ok ok ok ok ok ok ok ok ok n/a timeout 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)
./selftest (c64-pass.crt) screenshot ok ok ok ok ok ok ok ok ok ok fail ok n/a fail ok
../C64/raminitpattern darkstarbbstest.prg ok ok ok fail fail fail ok ok ok ok fail ok ok fail ok
../C64/raminitpattern typicaltest.prg ok ok fail ok fail ok ok ok ok ok fail ok ok ok ok
../C64/autostart/basic basictest.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../C64/autostart/basic printpoint.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../C64/autostart/basic printpoint2.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail 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 ok 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 ok fail fail
../C64/bankio bankio.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../C64/openio gauntlet.prg ok ok ok ok ok ok ok ok ok ok fail ok ok ok ok
../general/banking00 banking00.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../general/Lorenz-2.15/src nopz.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../general/Lorenz-2.15/src lseax.prg fail ok ok ok ok ok ok ok ok ok ok ok ok ok ok
../general/Lorenz-2.15/src laxay.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../general/Lorenz-2.15/src alrb.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../general/Lorenz-2.15/src arrb.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../general/Lorenz-2.15/src aneb.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../general/Lorenz-2.15/src shxay.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../general/Lorenz-2.15/src shyax.prg ok ok ok ok ok ok ok ok ok ok ok ok ok ok fail
../general/Lorenz-2.15/src shsay.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../general/Lorenz-2.15/src lasay.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../general/Lorenz-2.15/src trap1.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../general/Lorenz-2.15/src trap2.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../general/Lorenz-2.15/src trap3.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../general/Lorenz-2.15/src trap4.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../general/Lorenz-2.15/src trap5.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../general/Lorenz-2.15/src trap6.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../general/Lorenz-2.15/src trap7.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../general/Lorenz-2.15/src trap8.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../general/Lorenz-2.15/src trap9.prg ok ok ok ok ok ok ok ok ok ok ok ok ok timeout fail
../general/Lorenz-2.15/src trap10.prg ok ok ok ok ok ok ok ok ok ok ok ok ok timeout fail
../general/Lorenz-2.15/src trap11.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../general/Lorenz-2.15/src trap12.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../general/Lorenz-2.15/src trap13.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../general/Lorenz-2.15/src trap14.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../general/Lorenz-2.15/src trap15.prg ok ok ok ok ok ok ok ok ok ok ok ok ok timeout fail
../general/Lorenz-2.15/src trap16.prg PAL ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../general/Lorenz-2.15/src trap17.prg PAL ok ok ok ok ok fail fail ok ok fail ok ok ok fail fail
../general/Lorenz-2.15/src mmu.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail 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
../general/Lorenz-2.15/src cputiming.prg ok ok ok ok ok ok ok ok ok ok ok ok ok timeout 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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../general/ram0001 test1.prg ok ok ok ok ok ok ok ok ok ok ok ok fail fail fail
../general/fuxxortest test-fuxxored.prg ok ok timeout timeout timeout timeout timeout timeout timeout timeout ok 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
../general/fuxxortest ef2-inst1.prg ok ok ok ok ok ok ok ok ok ok ok ok ok n/a fail
../general/fuxxortest ef2-inst2.prg ok ok ok ok ok ok fail fail fail fail ok ok ok n/a fail
../general/fuxxortest ef2-inst3.prg ok ok ok ok ok ok fail fail ok ok ok ok ok n/a fail
../general/fuxxortest ef2-inst4a.prg ok ok ok ok fail fail fail fail ok fail ok fail fail n/a fail
../general/fuxxortest ef2-inst4b.prg ok ok ok ok ok ok ok ok ok ok ok ok ok n/a ok
../general/fuxxortest ef2-inst4c.prg ok ok ok ok ok ok timeout timeout timeout fail ok ok ok n/a timeout
../CPU/Acid800 cpu_illegal.prg ok ok ok ok ok ok ok ok ok ok ok ok ok timeout ok
../CPU/Acid800 cpu_timing_ntsc.prg (not 100% stable - rerun on failure) NTSC ok ok n/a ok n/a ok ok fail ok ok n/a ok n/a ok n/a
../CPU/Acid800 cpu_bugs.prg ok ok ok ok ok ok ok ok ok ok ok ok ok ok fail
../CPU/Acid800 cpu_clisei.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../CPU/ane ane.prg PAL ok ok ok ok ok ok ok ok ok ok fail ok ok ok fail
../CPU/ane ane-none.prg PAL ok ok ok ok ok ok ok ok ok ok fail ok ok ok fail
../CPU/ane ane-border.prg PAL ok ok ok ok ok ok ok ok ok ok fail ok ok ok fail
../CPU/asap cpu_ane.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../CPU/asap cpu_decimal.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../CPU/asap cpu_shx.prg ok ok ok ok ok ok ok ok ok fail fail ok ok fail fail
../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)
../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
../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
../CPU/cpuport test1.prg ok ok ok ok ok fail ok ok ok ok fail ok ok timeout ok
../CPU/cpuport (initvalue.crt) ok ok ok ok ok ok ok ok ok fail timeout ok n/a timeout fail
../CPU/decimalmode scanner.prg ok ok ok ok ok ok ok ok ok ok ok ok ok timeout ok
../CPU/decimalmode arr00.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../CPU/decimalmode arr01.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../CPU/decimalmode arr02.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../CPU/decimalmode arr10.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../CPU/decimalmode arr11.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../CPU/decimalmode arr12.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../CPU/lax lax.prg PAL ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../CPU/lax lax-none.prg PAL ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../CPU/lax lax-border.prg PAL ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../CPU/sha shaabsy1.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../CPU/sha shaabsy2.prg PAL ok ok ok ok ok ok fail fail ok ok ok ok ok fail fail
../CPU/sha shaabsy3.prg PAL ok ok ok ok ok ok fail fail ok ok fail ok ok fail fail
../CPU/sha shaabsy4.prg PAL ok ok ok ok ok ok fail fail ok ok fail ok ok fail fail
../CPU/sha shaabsy5.prg PAL ok ok ok ok ok ok fail fail ok ok fail ok fail fail fail
../CPU/sha shazpy1.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../CPU/sha shazpy2.prg PAL ok ok ok ok ok ok fail fail ok ok ok ok ok fail fail
../CPU/sha shazpy3.prg PAL ok ok ok ok ok ok fail fail ok ok fail ok ok fail fail
../CPU/sha shazpy4.prg PAL ok ok ok ok ok ok fail fail ok ok fail ok ok fail fail
../CPU/sha shazpy5.prg PAL ok ok ok ok ok ok fail fail ok ok fail ok fail fail fail
../CPU/shs shsabsy1.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../CPU/shs shsabsy2.prg PAL ok ok ok ok ok ok fail fail ok ok ok ok ok fail fail
../CPU/shs shsabsy3.prg PAL ok ok ok ok ok ok fail fail ok ok fail ok ok fail fail
../CPU/shs shsabsy4.prg PAL ok ok ok ok ok ok fail fail ok ok fail ok ok fail fail
../CPU/shs shsabsy5.prg PAL ok ok ok ok ok ok fail fail ok ok fail ok fail fail fail
../CPU/shxy shx-test.prg PAL ok ok ok ok ok ok fail fail ok ok ok ok fail fail ok
../CPU/shxy shxy1.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../CPU/shxy shxy2.prg PAL ok ok ok ok ok ok fail fail ok ok ok ok ok fail ok
../CPU/shxy shxy3.prg ok ok ok ok ok ok fail fail ok ok fail ok ok fail fail
../CPU/shxy shxy4.prg ok ok ok ok ok ok fail fail ok ok fail ok ok fail fail
../CPU/shxy shxy5.prg PAL ok ok ok ok ok ok fail fail ok ok fail ok fail fail fail
../CPU/shxy shyx1.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../CPU/shxy shyx2.prg PAL ok ok ok ok ok ok fail fail ok ok ok ok ok fail ok
../CPU/shxy shyx3.prg ok ok ok ok ok ok fail fail ok ok fail ok ok fail fail
../CPU/shxy shyx4.prg ok ok ok ok ok ok fail fail ok ok fail ok ok fail fail
../CPU/shxy shyx5.prg PAL ok ok ok ok ok ok fail fail ok ok fail ok fail fail fail
../CPU/jsrselfmod jsr.prg fail ok ok ok ok ok ok ok ok ok n/a ok ok n/a 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
../interrupts/branchquirk branchquirk-old.prg 6526 ok ok n/a ok n/a ok ok ok ok ok ok ok ok ok fail
../interrupts/branchquirk branchquirk-nminew.prg 8521 ok ok ok ok ok ok ok ok ok ok ok ok 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
../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
../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
../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
../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
../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
../interrupts/irq-ackn-bug cia1.prg 6526 ok ok n/a ok n/a ok ok ok fail fail ok ok ok fail fail
../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
../interrupts/irq-ackn-bug cia2.prg 6526 ok ok n/a ok n/a ok ok ok ok ok ok ok ok fail fail
../interrupts/irq-ackn-bug irq-ack-vicii.prg PAL ok ok ok ok ok ok fail fail fail fail ok fail ok timeout fail
../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
../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
../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
../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
../interrupts/irqdma test1b.prg PAL ok ok ok ok ok ok fail fail fail fail ok ok ok fail fail
../interrupts/irqdma test1.prg PAL ok ok ok ok ok ok fail fail fail fail ok ok ok fail fail
../interrupts/irqdma test2b.prg PAL ok ok ok ok ok ok fail fail fail fail ok ok ok fail fail
../interrupts/irqdma test2.prg PAL ok ok ok ok ok ok fail fail fail fail ok ok ok fail fail
../interrupts/irqdma test3b.prg PAL ok ok ok ok ok ok fail fail fail fail ok ok ok fail fail
../interrupts/irqdma test3.prg PAL ok ok ok ok ok ok fail fail fail fail ok ok ok fail fail
../interrupts/irqdma test4b.prg PAL ok ok ok ok ok ok fail fail fail fail ok ok ok fail fail
../interrupts/irqdma test4.prg PAL ok ok ok ok ok ok fail fail fail fail ok ok ok fail fail
../interrupts/irqdma test5b.prg PAL ok ok ok ok ok ok fail fail fail fail ok ok ok fail fail
../interrupts/irqdma test5.prg PAL ok ok ok ok ok ok fail fail fail fail ok ok ok fail fail
../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
../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
../interrupts/irqdma test6.prg PAL ok ok ok ok fail ok fail fail fail fail ok fail ok fail fail
../interrupts/irqdma test7b.prg PAL ok ok ok ok fail ok fail fail fail fail ok fail ok fail fail
../interrupts/irqdma test7.prg PAL ok ok ok ok fail ok fail fail fail fail ok fail ok fail fail
../interrupts/irqnmi irqnmi-new.prg 8521 ok ok ok ok ok ok ok ok fail fail ok ok 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
../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
../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
../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
../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
../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
../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
../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
../CIA/ciavarious cia3.prg 6526 ok ok n/a ok n/a ok ok ok ok ok ok fail ok fail fail
../CIA/ciavarious cia3a.prg 6526 ok ok n/a ok n/a ok ok ok ok ok ok fail ok fail fail
../CIA/ciavarious cia4.prg 6526 ok ok n/a ok n/a ok ok ok ok ok ok fail ok fail fail
../CIA/ciavarious cia5.prg ok ok ok ok ok ok ok ok ok ok fail ok ok ok ok
../CIA/ciavarious cia6.prg ok ok ok ok ok ok ok ok fail fail ok ok ok ok fail
../CIA/ciavarious cia7.prg ok ok ok ok ok ok ok ok ok ok ok ok ok ok fail
../CIA/ciavarious cia8.prg 6526 ok ok n/a ok n/a ok ok ok fail fail fail fail ok fail fail
../CIA/ciavarious cia9.prg ok ok ok ok ok ok ok ok ok ok ok ok ok ok fail
../CIA/ciavarious cia10.prg ok ok ok ok ok ok ok ok ok ok ok ok ok ok fail
../CIA/ciavarious cia11.prg ok ok ok ok ok ok ok ok ok ok ok ok ok ok fail
../CIA/ciavarious cia12.prg ok ok ok ok ok ok ok ok ok ok ok ok ok ok fail
../CIA/ciavarious cia13.prg ok ok ok ok ok ok ok ok ok ok ok ok ok ok fail
../CIA/ciavarious cia14.prg ok ok ok ok ok ok ok ok ok ok ok ok ok ok fail
../CIA/ciavarious cia15.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../CIA/ciavarious cia3new.prg 8521 ok ok ok ok ok ok ok ok ok ok ok ok 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
../CIA/ciavarious cia4new.prg 8521 ok ok ok ok ok ok ok ok ok ok ok ok 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
../CIA/dd0drw dd0drw.prg ok ok ok ok ok ok ok ok ok ok ok ok ok n/a 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
../CIA/dd0dtest dd0dtest.prg 8521 ok ok ok ok ok ok ok ok fail fail n/a fail 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
../CIA/irqdelay irqdelay-new.prg 8521 ok ok ok ok ok ok ok ok ok ok ok ok 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
../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
../CIA/irqdelay irqdelay2.prg 6526 ok ok n/a ok n/a ok ok ok ok ok ok ok ok ok fail
../CIA/irqdelay irqdelay2-new.prg 8521 ok ok ok ok ok ok ok ok ok ok ok ok 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
../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
../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
../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
../CIA/irqdelay irqdelay-cia2-oneshot-4.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../CIA/pb6pb7 main.prg ok ok ok ok ok ok ok ok ok ok n/a ok ok n/a ok
../CIA/reload0 reload0a.prg ok ok ok ok ok ok ok ok ok ok ok ok ok ok fail
../CIA/reload0 reload0b.prg ok ok ok ok ok ok ok ok ok ok ok ok ok ok fail
../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
../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
../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
../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
../CIA/shiftregister cia-sdr-load.prg ok ok ok ok ok ok ok ok fail fail fail fail fail n/a fail
../CIA/shiftregister cia-sdr-init.prg ok ok ok ok ok ok ok ok fail fail fail fail ok n/a fail
../CIA/shiftregister cia-sdr-delay.prg ok ok ok ok ok ok ok ok fail fail fail fail ok n/a 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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../CIA/timerbasics test_new.prg 8521 ok ok ok ok ok ok ok ok ok ok ok ok 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
../CIA/timerbasics timer_new.prg 8521 ok ok ok ok ok ok ok ok ok ok ok ok 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
../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
../CIA/timerbasics timer_test1.prg 6526 ok ok n/a ok n/a ok ok ok ok ok ok ok ok ok fail
../CIA/tod 0alarm.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../CIA/tod 1alarm.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../CIA/tod 4todcia1.prg ok ok ok ok ok ok ok ok fail fail fail ok ok fail fail
../CIA/tod 4tod.prg ok ok ok ok ok ok ok ok fail fail fail ok ok fail fail
../CIA/tod 5tod.prg ok ok ok ok ok ok ok ok ok ok fail ok ok fail fail
../CIA/tod 6tod.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../CIA/tod alarm-cond2.prg ok ok ok ok ok ok ok ok ok ok ok ok ok ok fail
../CIA/tod alarm.prg ok ok ok ok ok ok ok ok ok ok ok ok ok timeout ok
../CIA/tod fix-hour.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../CIA/tod fix-min.prg ok ok ok ok ok ok ok ok ok ok fail ok ok fail fail
../CIA/tod fix-sec.prg ok ok ok ok ok ok ok ok ok ok fail ok ok fail fail
../CIA/tod fix-tsec.prg ok ok ok ok ok ok ok ok ok ok fail ok ok fail fail
../CIA/tod hammerfist0.prg ok ok ok ok ok ok ok ok ok ok fail ok ok fail fail
../CIA/tod hammerfist1.prg ok ok ok ok ok ok ok ok ok ok fail ok ok fail fail
../CIA/tod hour-test.prg ok ok ok ok ok ok ok ok ok ok ok ok ok timeout ok
../CIA/tod hzsync0.prg PAL ok ok ok ok ok ok ok ok ok ok fail ok ok fail fail
../CIA/tod hzsync1.prg PAL ok ok ok ok ok ok ok ok ok ok ok ok ok timeout ok
../CIA/tod hzsync2.prg PAL ok ok ok ok ok ok ok ok ok ok fail ok ok fail fail
../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
../CIA/tod hzsync4.prg PAL ok ok ok ok ok ok ok ok ok ok fail ok fail fail fail
../CIA/tod hzsync5.prg PAL ok ok ok ok ok ok ok ok ok ok fail ok ok fail fail
../CIA/tod hzsync6.prg PAL fail ok fail ok fail ok fail fail fail fail n/a fail fail n/a ok
../CIA/tod powerup.prg ok ok ok ok ok ok ok ok ok ok ok ok fail fail fail
../CIA/tod read-latch.prg PAL ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../CIA/tod stability.prg PAL ok ok ok ok ok ok ok ok ok ok ok ok ok timeout ok
../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
../CIA/tod write-stop.prg ok ok ok ok ok ok ok ok ok ok ok ok ok timeout ok
../VICII/banking banking.prg PAL screenshot ok ok ok ok ok ok ok ok ok fail fail ok ok ok ok
../VICII/border border-250.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail fail ok ok fail fail
../VICII/border border-251.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok fail ok ok ok fail
../VICII/border border-252.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok fail ok ok ok fail
../VICII/border border-bm-idle.prg PAL screenshot ok ok ok ok ok ok fail fail fail fail fail ok ok fail fail
../VICII/border border-bm-ysh2.prg PAL screenshot ok ok ok ok ok ok fail fail fail fail fail ok ok fail fail
../VICII/border border-bm-ysh.prg PAL screenshot ok ok ok ok ok ok fail fail fail fail fail ok ok fail fail
../VICII/border border-mcbm.prg PAL screenshot ok ok ok ok ok ok fail fail fail fail fail ok ok fail fail
../VICII/border hvborder1.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail ok ok ok fail fail
../VICII/border hvborder2.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail ok ok ok fail fail
../VICII/border vborder-32-08.prg PAL screenshot ok ok ok ok ok ok fail fail fail fail ok ok ok ok ok
../VICII/border vborder-32-09.prg PAL screenshot ok ok ok ok ok ok fail fail fail fail ok ok ok ok ok
../VICII/border vborder-33-08.prg PAL screenshot ok ok ok ok ok ok fail fail fail fail ok ok ok ok ok
../VICII/border vborder2-22.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail ok ok ok fail fail
../VICII/border vborder2-36.prg PAL screenshot ok ok ok ok fail ok fail fail fail fail ok fail fail fail fail
../VICII/border vborder2-63.prg PAL screenshot ok ok ok ok ok ok fail fail fail fail ok ok ok ok ok
../VICII/colorfetchbug bitmap.prg PAL screenshot ok ok ok ok fail ok ok ok fail fail n/a fail fail n/a fail
../VICII/colorfetchbug main.prg PAL screenshot ok ok ok ok fail ok ok ok fail fail n/a fail fail n/a fail
../VICII/colorfetchbug main2.prg PAL screenshot ok ok ok ok fail ok ok ok fail fail n/a fail fail n/a fail
../VICII/colorfetchbug main3.prg PAL screenshot ok ok ok ok fail ok ok ok fail fail n/a fail fail n/a fail
../VICII/colorfetchbug main4.prg PAL screenshot ok ok ok ok fail ok ok ok fail fail n/a fail fail n/a fail
../VICII/colorsplit colorsplit.prg PAL screenshot ok ok ok ok ok fail ok ok fail fail ok ok ok fail fail
../VICII/D011Test disable-bad.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../VICII/D011Test disable-bad_ntsc.prg NTSC screenshot ok ok n/a ok n/a ok ok ok ok ok n/a fail fail fail 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
../VICII/dentest den10-48-0.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../VICII/dentest den10-48-1.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../VICII/dentest den10-48-2.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../VICII/dentest den10-51-0.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../VICII/dentest den10-51-1.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail ok ok ok ok fail
../VICII/dentest denrsel-0.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../VICII/dentest denrsel-1.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail ok ok ok ok fail
../VICII/dentest denrsel-2.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail ok ok ok ok fail
../VICII/dentest denrsel-s0.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../VICII/dentest denrsel-s1.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail ok ok ok ok fail
../VICII/dentest denrsel-s2.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail ok ok ok ok fail
../VICII/dentest den01-48-0_ntsc.prg NTSC screenshot ok ok n/a ok n/a ok ok ok ok ok n/a ok fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail n/a
../VICII/dentest denrsel55_ntsc.prg NTSC screenshot ok ok n/a ok n/a ok ok ok ok ok n/a ok fail fail 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
../VICII/dmadelay test1-2a-18.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail ok ok ok fail fail
../VICII/dmadelay test2-28-06.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok ok fail
../VICII/dmadelay test2-28-18.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail ok ok ok fail fail
../VICII/dmadelay test3-28-07.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../VICII/dmadelay test3-28-08.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../VICII/dmadelay test3-28-13.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../VICII/dmadelay test3-28-14.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../VICII/dmadelay test3-28-18.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../VICII/dmadelay test3-28-19.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../VICII/dmadelay test3-28-1a.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail ok ok ok fail fail
../VICII/dmadelay test1-2e-03-ntsc.prg NTSC screenshot ok ok n/a ok n/a ok ok ok ok ok n/a ok fail 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 fail 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 fail 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 fail 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 fail 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 fail 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 fail 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 fail 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 fail 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 fail 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 fail 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 fail 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 fail 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 fail 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 fail 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 fail 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 fail 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 fail 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 fail 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 fail 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 fail 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
../VICII/fldscroll fldscroll-21-60.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../VICII/fldscroll fldscroll-22-60.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../VICII/fldscroll fldscroll-29-60.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../VICII/fldscroll fldscroll-2A-60.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../VICII/fldscroll fldscroll-2B-60.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok fail fail
../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
../VICII/flibug blackmail-fixed.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail fail ok ok n/a fail
../VICII/gfxfetch gfxfetch.prg PAL screenshot ok ok ok ok ok ok fail fail ok ok ok ok ok fail ok
../VICII/gfxfetch gfxfetch_ntsc.prg NTSC screenshot ok ok n/a ok n/a ok fail fail ok ok n/a fail fail fail n/a
../VICII/greydot greydot.prg PAL screenshot ok ok ok ok ok fail ok ok fail fail fail ok ok fail fail
../VICII/lplatency lplatency.prg PAL ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../VICII/lp-trigger test1.prg PAL screenshot ok ok ok ok ok fail ok ok fail fail ok ok ok fail fail
../VICII/lp-trigger test2.prg PAL ok ok fail fail ok fail ok ok ok fail ok fail ok fail fail
../VICII/lp-trigger test2new.prg PAL ok ok ok ok fail ok fail fail fail ok fail ok fail fail fail
../VICII/phi1timing phi1timing.prg PAL ok ok ok ok ok ok ok ok ok ok fail ok fail fail fail
../VICII/phi1timing phi1timing_ntsc.prg NTSC ok ok n/a ok n/a ok ok ok ok ok n/a fail fail fail 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
../VICII/rasterirq rasterirq_hold.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail ok ok ok fail fail
../VICII/screenpos screenpos.prg PAL screenshot ok ok ok ok ok fail ok ok fail fail ok ok ok fail fail
../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
../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
../VICII/screenpos screenpos_ntsc.prg NTSC screenshot ok ok n/a ok n/a fail ok ok fail fail n/a fail fail fail 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
../VICII/split-tests/lightpen lightpen.prg ok ok ok fail ok 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
../VICII/split-tests/spritescan spritescan.prg PAL ok ok ok ok ok ok fail fail fail fail ok fail ok fail fail
../VICII/vicii_timing vicii_reg_timing.prg PAL screenshot ok ok fail fail fail fail fail fail fail fail fail fail fail fail fail
../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
../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
../VICII/videomode rmwtest.prg PAL screenshot ok ok ok ok ok fail ok ok fail fail ok ok ok fail fail
../VICII/videomode rmwtest_ntsc.prg NTSC screenshot ok ok n/a ok n/a fail ok ok fail fail n/a ok fail fail n/a
../VICII/videomode videomode1.prg PAL screenshot ok fail fail fail fail fail fail fail fail fail ok fail fail fail fail
../VICII/videomode videomode2.prg PAL screenshot ok fail ok fail fail fail fail fail fail fail fail fail fail fail fail
../VICII/videomode videomode-v.prg PAL screenshot ok fail fail fail fail fail fail fail fail fail ok fail fail fail fail
../VICII/videomode videomode-w.prg PAL screenshot ok fail fail fail fail fail fail fail fail fail ok fail fail fail fail
../VICII/videomode videomode-x.prg PAL screenshot ok fail fail fail fail fail fail fail fail fail ok fail fail fail fail
../VICII/videomode videomode-y.prg PAL screenshot ok fail fail fail fail fail fail fail fail fail ok fail fail fail fail
../VICII/videomode videomode-z.prg PAL screenshot fail fail fail fail fail fail fail fail fail fail fail fail fail fail fail
../VICII/videomode videomode-v_ntsc.prg NTSC screenshot ok fail n/a fail n/a fail fail fail fail fail n/a fail fail fail 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 fail fail 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 fail fail 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 fail fail 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 fail fail n/a
../VICII/videomode videomode2_ntsc.prg NTSC screenshot fail fail n/a fail n/a fail fail fail fail fail n/a fail fail fail n/a
../VICII/videomode videomode1_ntsc.prg NTSC screenshot ok fail n/a ok n/a ok fail fail fail fail n/a fail fail fail 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
../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
../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
../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
../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
../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
../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
../VICII/vspbug vsp_bug.prg ok ok ok ok ok ok ok ok ok ok fail ok ok ok fail
../VICII/vsp-tester vsp-tester.prg PAL fail fail fail ok fail ok fail fail timeout timeout n/a fail fail n/a timeout
../VICII/vsp-tester vsp-tester-ntsc.prg NTSC fail fail n/a ok n/a ok fail fail timeout timeout n/a fail fail 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
../VICII/spritebug spritebug-104.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail ok ok ok fail fail
../VICII/spritebug spritebug-105.prg PAL screenshot ok ok ok ok ok ok fail fail ok ok fail ok ok fail fail
../VICII/spritebug spritebug-106.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail ok ok ok fail fail
../VICII/spritecollisions sprite-gfx-collision-cycle.prg PAL ok ok ok ok ok ok fail fail fail fail ok fail ok fail fail
../VICII/spritecollisions sprite-sprite-collision-cycle.prg PAL ok ok ok ok ok ok fail fail fail fail ok fail ok ok fail
../VICII/spritecollisions sprite-sprite-hi-hi.prg ok ok ok ok ok ok ok ok ok ok ok ok ok n/a ok
../VICII/spritecollisions sprite-sprite-mc-hi.prg ok ok ok ok ok ok ok ok ok ok ok ok ok n/a ok
../VICII/spritecollisions sprite-sprite-hi-mc.prg ok ok ok ok ok ok ok ok ok ok ok ok ok n/a ok
../VICII/spritecollisions sprite-sprite-mc-mc.prg ok ok ok ok ok ok ok ok ok ok ok ok ok n/a ok
../VICII/spritecollisions sprite-gfx-hi-hi.prg ok ok ok ok ok ok ok ok ok ok ok ok ok n/a ok
../VICII/spritecollisions sprite-gfx-mc-hi.prg ok ok ok ok ok ok ok ok ok ok ok ok ok n/a ok
../VICII/spritecollisions sprite-gfx-hi-mc.prg ok ok ok ok ok ok ok ok ok ok ok ok ok n/a ok
../VICII/spritecollisions sprite-gfx-mc-mc.prg ok ok ok ok ok ok ok ok ok ok ok ok ok n/a ok
../VICII/spritecrunch spritecrunch-3b-00.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok fail ok ok ok fail
../VICII/spritecrunch spritecrunch-3c-00.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok fail ok ok ok fail
../VICII/spritecrunch spritecrunch-3d-00.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok fail ok ok ok fail
../VICII/spritecrunch spritecrunch2-07.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail fail ok ok fail fail
../VICII/spritecrunch spritecrunch2-08.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok fail ok ok ok fail
../VICII/spritecrunch spritecrunch2-09.prg PAL screenshot ok ok ok ok ok ok ok ok ok ok fail ok ok ok fail
../VICII/spritecrunch spritecrunch2-25.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail fail ok ok ok fail
../VICII/spritecrunch spritecrunch2-26.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail fail ok ok ok fail
../VICII/spritecrunch spritecrunch2-27.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail fail ok ok ok fail
../VICII/spritecrunch spritecrunch2-28.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail fail ok ok ok fail
../VICII/spritecrunch spritecrunch2-29.prg PAL screenshot ok ok ok ok ok ok ok ok fail fail fail ok ok ok fail
../VICII/spritedma d017-54_ntsc.prg NTSC screenshot ok ok n/a ok n/a ok ok ok ok ok n/a ok fail fail 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 fail fail n/a
../VICII/spriteenable spriteenable1.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail ok ok ok fail fail
../VICII/spriteenable spriteenable2.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail ok ok ok fail fail
../VICII/spriteenable spriteenable3.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail ok ok ok fail fail
../VICII/spriteenable spriteenable4.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail ok ok ok fail fail
../VICII/spriteenable spriteenable5.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail ok ok ok fail fail
../VICII/spriteenable spriteenable1_ntsc.prg NTSC screenshot ok ok n/a ok n/a fail fail fail fail fail n/a fail fail fail n/a
../VICII/spriteenable spriteenable2_ntsc.prg NTSC screenshot ok ok n/a ok n/a fail fail fail fail fail n/a fail fail fail n/a
../VICII/spriteenable spriteenable3_ntsc.prg NTSC screenshot ok fail n/a ok n/a fail fail fail fail fail n/a fail fail fail n/a
../VICII/spriteenable spriteenable4_ntsc.prg NTSC screenshot ok fail n/a ok n/a fail fail fail fail fail n/a fail fail fail n/a
../VICII/spriteenable spriteenable5_ntsc.prg NTSC screenshot ok fail n/a ok n/a fail fail fail fail fail n/a fail fail fail 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
../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
../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
../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
../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
../VICII/spritefetchbug test-136-2a.prg PAL screenshot fail fail fail fail fail fail fail fail fail fail fail fail fail fail fail
../VICII/spritegap spritegap2.prg ok ok ok ok ok ok fail fail fail fail ok fail ok fail ok
../VICII/spritegap spritegap3.prg ok ok ok ok ok ok fail fail fail fail ok fail ok fail ok
../VICII/spritepriorities test1.prg screenshot ok ok ok ok ok ok ok ok ok ok ok ok ok ok fail
../VICII/spriterestart spriterestart.prg PAL ok ok ok ok ok ok fail fail ok ok ok ok ok ok fail
../VICII/spritesplit ss-exp-unexp-hires.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail fail ok ok fail fail
../VICII/spritesplit ss-exp-unexp-mc.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail fail ok ok fail fail
../VICII/spritesplit ss-hires-color.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail ok ok ok fail fail
../VICII/spritesplit ss-hires-mc-exp.prg PAL screenshot ok ok ok ok fail fail ok ok fail fail ok fail ok fail fail
../VICII/spritesplit ss-hires-mc.prg PAL screenshot ok ok ok ok fail fail ok ok fail fail ok fail ok fail fail
../VICII/spritesplit ss-mc-color0.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail ok ok ok fail fail
../VICII/spritesplit ss-mc-color1.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail ok ok ok fail fail
../VICII/spritesplit ss-mc-color2.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail ok ok ok fail fail
../VICII/spritesplit ss-mc-hires-exp.prg PAL screenshot ok ok fail ok fail fail fail fail fail fail ok fail ok fail fail
../VICII/spritesplit ss-mc-hires.prg PAL screenshot ok ok fail ok fail fail fail fail fail fail ok fail ok fail fail
../VICII/spritesplit ss-pri-exp.prg PAL screenshot ok ok ok ok ok ok fail fail fail fail ok ok ok fail fail
../VICII/spritesplit ss-pri-mc-exp.prg PAL screenshot ok ok ok ok ok ok fail fail fail fail ok ok ok fail fail
../VICII/spritesplit ss-pri-mc.prg PAL screenshot ok ok ok ok ok ok fail fail fail fail ok ok ok fail fail
../VICII/spritesplit ss-pri.prg PAL screenshot ok ok ok ok ok ok fail fail fail fail ok ok ok fail fail
../VICII/spritesplit ss-unexp-exp-hires.prg PAL screenshot ok ok ok ok ok fail ok ok fail fail ok ok ok fail fail
../VICII/spritesplit ss-unexp-exp-mc.prg PAL screenshot ok ok ok ok ok fail ok ok fail fail ok ok ok fail fail
../VICII/spritesplit ss-xpos.prg PAL screenshot ok ok ok ok ok fail ok ok fail fail ok ok ok fail fail
../VICII/spritesteal spritesteal_ntsc.prg NTSC ok ok n/a ok n/a ok ok ok ok ok n/a fail ok ok 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
../VICII/spritevssprite spritevssprite.prg PAL ok fail ok ok ok ok fail fail fail fail fail fail ok fail fail
../VICII/spritex demusinterruptus.prg PAL ok ok ok ok ok ok ok ok fail fail ok ok ok fail fail
../VICII/spritex testsuite.prg PAL ok ok ok ok ok ok ok ok fail fail ok fail ok fail fail
../VICII/spritex testsuite_ntsc.prg NTSC ok ok n/a ok n/a ok ok ok fail fail n/a fail ok fail 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
../VICII/spritey spritey.prg PAL ok ok ok ok ok ok ok ok fail fail ok ok ok fail fail
../SID/busvalue busvalue.prg ok ok ok ok ok ok ok ok ok ok fail ok fail fail fail
../SID/detect detect-1-old.prg 6581 ok ok n/a ok n/a 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
../SID/detect detect-2-old.prg 6581 ok ok n/a ok n/a ok ok ok ok ok ok ok ok fail 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
../SID/env_test env_test_ra_0000.prg ok ok ok ok ok ok ok ok ok ok fail fail fail timeout fail
../SID/env_test env_test_ra_0100.prg ok ok ok ok ok ok ok ok ok ok fail fail fail timeout fail
../SID/env_test env_test_adra_1.prg ok ok ok ok ok ok ok ok ok ok fail fail fail timeout fail
../SID/env_test env_test_adra_2.prg ok ok ok ok ok ok ok ok ok ok fail fail fail timeout fail
../SID/env_test env_test_ar_1.prg ok ok ok ok ok ok ok ok ok ok fail fail fail timeout fail
../SID/env_test env_test_ar_2.prg ok ok ok ok ok ok ok ok ok ok fail fail fail timeout fail
../SID/env_test env_test_ar_3.prg ok ok ok ok ok ok ok ok ok ok fail fail fail timeout fail
../SID/envelope testADSRDelayBug.prg ok ok ok ok timeout ok ok ok ok ok ok ok ok timeout ok
../SID/envelope testFlip00toFF.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../SID/envelope testFlipFFto00.prg ok ok ok ok ok ok ok ok ok ok ok ok ok timeout ok
../SID/exp_counter_reset env_test_exr.prg ok ok ok ok ok ok ok ok ok ok ok ok fail n/a ok
../SID/noiselfsrinit simple.prg 8580 fail ok fail fail ok fail ok ok fail fail n/a fail n/a n/a fail
../SID/noiselfsrinit scan.prg 8580 fail ok fail fail ok fail ok ok fail fail n/a fail n/a n/a 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
../SID/noiselfsrinit scan.prg 6581 fail ok n/a fail n/a fail ok ok fail fail n/a fail fail n/a 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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../SID/osc3-wave0 osc3-wave0-new.prg 8580 ok ok ok fail ok timeout ok ok fail fail ok fail n/a n/a 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
../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
../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
../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
../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
../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
../SID/oscinit oscinit.prg ok ok ok ok fail ok ok ok ok ok fail fail fail fail fail
../SID/oscinit noiseinit.prg ok ok fail ok fail ok ok ok ok ok fail fail fail fail ok
../SID/oscinit allinit.prg ok ok fail ok fail ok ok ok ok ok 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
../SID/resid-test envdelay.prg ok ok ok ok ok ok ok ok ok ok ok ok ok timeout ok
../SID/resid-test envrate.prg ok ok ok ok ok ok ok ok ok ok ok ok ok timeout ok
../SID/resid-test envsample.prg (envsample.d64) ok ok ok ok ok ok ok ok ok ok fail ok fail timeout fail
../SID/resid-test envsustain.prg ok ok ok ok ok ok ok ok ok ok ok ok ok timeout ok
../SID/resid-test envtime.prg ok ok ok ok ok ok ok ok ok ok ok ok ok timeout ok
../SID/resid-test noisetest.prg ok ok ok ok ok ok ok ok ok ok ok ok fail fail 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
../SID/resid-test oscsample0-8580.prg 8580 ok ok ok ok ok ok ok ok ok ok fail fail n/a n/a 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
../SID/resid-test oscsample1-8580.prg 8580 ok ok ok ok ok ok ok ok ok ok fail fail n/a n/a fail
../SID/ringmod ringmodtest.prg ok ok ok ok ok ok ok ok ok ok fail ok ok 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
../SID/waveforms waveforms-20-6581.prg 6581 ok ok n/a ok n/a ok ok ok ok ok ok ok ok fail 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
../SID/waveforms waveforms-80-6581.prg 6581 ok ok n/a ok n/a ok ok ok ok ok fail ok 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
../SID/waveforms waveforms-20-8580.prg 8580 ok ok ok ok ok ok ok ok ok ok ok ok n/a n/a 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
../SID/waveforms waveforms-80-8580.prg 8580 ok ok ok ok ok ok ok ok ok ok fail fail n/a n/a fail
../SID/writedelay writedelay.prg ok ok ok ok ok ok ok ok ok ok ok ok ok fail ok
../SID/wf12nsr wf12nsr.prg 6581 fail ok n/a ok n/a ok ok ok ok ok fail timeout fail fail timeout
../SID/wf12nsr wf12nsr-8580.prg 8580 fail fail fail fail ok fail fail fail fail fail fail timeout n/a n/a timeout
../C64/autostart/defaults (test.crt) (repeatedly press reset to check i/o register reset behaviour) ok ok ok ok ok fail ok ok ok ok timeout fail n/a timeout fail
../C64/carts/aracidtest test-ramdetect-ar.prg (ardummy.crt) ok ok timeout ok n/a ok ok ok ok ok ok n/a n/a n/a fail
../C64/carts/aracidtest test-ramsizedetect-ar.prg (ardummy.crt) ok ok timeout ok n/a ok ok ok ok ok ok n/a n/a n/a ok
../C64/carts/aracidtest test-ariotest1-ar.prg (ardummy.crt) ok ok timeout ok n/a ok ok ok ok ok ok n/a n/a n/a fail
../C64/carts/aracidtest test-ariotest2-ar.prg (ardummy.crt) ok ok timeout ok n/a ok ok ok ok ok ok n/a n/a n/a fail
../C64/carts/aracidtest test-arramtest2-ar.prg (ardummy.crt) ok ok timeout ok n/a ok ok ok ok ok fail n/a n/a n/a fail
../C64/carts/aracidtest test-ramdetect-ar.prg (npdummy.crt) ok ok n/a ok n/a ok ok ok n/a n/a ok n/a n/a n/a fail
../C64/carts/aracidtest test-ramsizedetect-ar.prg (npdummy.crt) ok ok n/a ok n/a ok ok ok n/a n/a ok n/a n/a n/a fail
../C64/carts/aracidtest test-ariotest1-ar.prg (npdummy.crt) ok ok n/a ok n/a ok ok ok n/a n/a fail n/a n/a n/a fail
../C64/carts/aracidtest test-ariotest2-ar.prg (npdummy.crt) ok ok n/a ok n/a ok ok ok n/a n/a fail n/a n/a n/a fail
../C64/carts/aracidtest test-arramtest2-ar.prg (npdummy.crt) ok ok n/a ok n/a ok ok ok n/a n/a fail n/a n/a n/a fail
../C64/carts/aracidtest test-ramdetect.prg (rrdummy.crt) ok ok timeout ok n/a ok ok ok n/a n/a ok n/a n/a n/a fail
../C64/carts/aracidtest test-ramsizedetect.prg (rrdummy.crt) ok ok timeout ok n/a ok ok ok n/a n/a ok n/a n/a n/a fail
../C64/carts/aracidtest test-ariotest1.prg (rrdummy.crt) ok ok timeout ok n/a ok ok ok n/a n/a ok n/a n/a n/a fail
../C64/carts/aracidtest test-ariotest2.prg (rrdummy.crt) ok ok timeout ok n/a ok ok ok n/a n/a ok n/a n/a n/a fail
../C64/carts/aracidtest test-arramtest2.prg (rrdummy.crt) ok ok timeout fail n/a fail ok ok n/a n/a ok n/a n/a n/a fail
../C64/carts/aracidtest test-ramdetect.prg (nrdummy.crt) ok ok n/a ok ok ok ok ok n/a n/a ok ok n/a n/a fail
../C64/carts/aracidtest test-ramsizedetect.prg (nrdummy.crt) ok ok n/a ok ok ok ok ok n/a n/a ok ok n/a n/a fail
../C64/carts/aracidtest test-ariotest1.prg (nrdummy.crt) ok ok n/a ok ok ok ok ok n/a n/a ok ok n/a n/a fail
../C64/carts/aracidtest test-ariotest2.prg (nrdummy.crt) ok ok n/a ok ok ok ok ok n/a n/a ok ok n/a n/a fail
../C64/carts/aracidtest test-arramtest2-nr.prg (nrdummy.crt) ok ok n/a ok ok ok ok ok n/a n/a fail ok n/a n/a fail
../C64/carts (8kgame.crt) ok ok ok ok ok ok ok ok ok ok ok ok n/a timeout ok
../C64/carts (16kgame.crt) ok ok ok ok ok ok ok ok ok ok ok ok n/a timeout ok
../C64/carts (romram.crt) ok ok ok ok ok ok ok ok ok ok timeout ok n/a timeout ok
../C64/carts (rr-reu.crt) ok ok n/a ok ok ok ok ok n/a n/a fail ok n/a timeout fail
../C64/carts/pagefox (writeram-8000.crt) ok ok n/a ok ok ok ok ok ok ok ok ok n/a timeout fail
../C64/carts/pagefox (writeram-a000.crt) ok ok n/a ok ok ok ok ok ok ok ok ok n/a timeout fail
../C64/carts/pagefox (godot.crt) ok ok n/a fail ok fail ok ok fail fail ok ok n/a timeout fail
../C64/carts/ef-test (ef_test.crt) ok ok ok ok ok ok ok ok ok ok timeout ok n/a timeout fail
../C64/carts/nordicpower (artest.crt) ok ok n/a fail n/a fail ok ok n/a n/a fail n/a n/a n/a fail
../C64/carts/nordicpower (nptest.crt) ok ok n/a ok n/a ok ok ok n/a n/a fail n/a n/a n/a fail
../C64/carts/nordicpower (rrtest.crt) ok ok n/a ok n/a ok ok ok n/a n/a ok n/a n/a n/a fail
../C64/carts/nordicpower (rr2test.crt) ok ok n/a ok n/a ok ok ok n/a n/a ok n/a n/a n/a fail
../C64/carts/nordicpower (nrtest.crt) ok ok n/a fail ok fail ok ok n/a n/a fail ok n/a n/a fail
../C64/carts/nordicpower (nr2test.crt) ok ok n/a fail ok fail ok ok n/a n/a fail ok n/a n/a fail
../C64/carts/nordicpower (arramwrite.crt) ok ok n/a fail n/a fail ok ok n/a n/a fail n/a n/a n/a fail
../C64/carts/nordicpower (npramwrite.crt) ok ok n/a ok n/a ok ok ok n/a n/a fail n/a n/a n/a fail
../C64/carts/nordicpower (rrramwrite.crt) ok ok n/a ok n/a ok ok ok n/a n/a ok n/a n/a n/a fail
../C64/carts/nordicpower (rr2ramwrite.crt) ok ok n/a ok n/a ok ok ok n/a n/a ok n/a n/a n/a fail
../C64/carts/nordicpower (nrramwrite.crt) ok ok n/a fail ok fail ok ok n/a n/a fail ok n/a n/a fail
../C64/carts/nordicpower (nr2ramwrite.crt) ok ok n/a fail ok fail ok ok n/a n/a fail ok n/a n/a fail
../C64/carts/nordicpower arramwrite.prg (ardummy.crt) ok ok n/a fail n/a fail ok ok n/a n/a fail n/a n/a n/a fail
../C64/carts/nordicpower safearramwrite.prg (ardummy.crt) ok ok n/a fail n/a fail ok ok n/a n/a fail n/a n/a n/a fail
../C64/carts/nordicpower npramwrite.prg (npdummy.crt) ok ok n/a ok n/a ok ok ok n/a n/a fail n/a n/a n/a fail
../C64/carts/nordicpower rrramwrite.prg (rrdummy.crt) ok ok n/a ok n/a ok ok ok n/a n/a ok n/a n/a n/a fail
../C64/carts/nordicpower rr2ramwrite.prg (rrdummy.crt) ok ok n/a ok n/a ok ok ok n/a n/a ok n/a n/a n/a fail
../C64/carts/nordicpower nrramwrite.prg (nrdummy.crt) ok ok n/a fail ok fail ok ok n/a n/a fail ok n/a n/a fail
../C64/carts/nordicpower nr2ramwrite.prg (nrdummy.crt) ok ok n/a fail ok fail ok ok n/a n/a fail ok n/a n/a fail
../C64/carts/retroreplay allowbank0.prg (rrdummy.crt) ok ok timeout ok ok ok ok ok n/a n/a ok ok n/a n/a fail
../C64/carts/retroreplay allowbank1.prg (rrdummy.crt) ok ok timeout ok ok ok ok ok n/a n/a ok ok n/a n/a fail
../C64/carts/retroreplay writeonce.prg (rrdummy.crt) ok ok timeout ok ok ok ok ok n/a n/a ok ok n/a n/a ok
../C64/carts/supergames (supergames.crt) ok ok ok ok ok ok ok ok ok ok fail ok n/a timeout fail
../C64/carts/tamtest (tamtest.crt) ok ok ok ok ok ok ok ok fail fail timeout ok n/a timeout ok
../C64/carts/ultimax (8k-vic-ef.crt) PAL screenshot ok ok ok ok ok ok ok ok ok ok fail ok n/a fail ok
../C64/carts/ultimax (8k-vic-rr.crt) PAL screenshot ok ok ok ok ok ok ok ok n/a n/a fail ok n/a fail ok
../C64/carts/ultimax (16k-vic-rr.crt) PAL screenshot ok ok ok ok ok ok ok ok n/a n/a fail ok n/a fail ok
../C64/carts/ultimax (16k-vic-ef.crt) PAL screenshot ok ok ok ok ok ok ok ok ok ok fail ok n/a fail ok
../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
../C64/carts/ultimax (ultimax-vic-ef.crt) PAL screenshot ok ok ok ok ok ok ok ok ok ok fail ok n/a fail fail
../REU/64ktransfer toc64.prg ok ok ok fail ok fail ok ok ok ok n/a ok ok n/a ok
../REU/64ktransfer toreu.prg ok ok ok fail ok fail ok ok ok ok n/a ok ok n/a ok
../REU/badoublewrite badoublewrite.prg screenshot ok fail fail fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/bonzai spritetiming.prg ok ok ok ok ok ok fail fail fail fail fail ok fail n/a timeout
../REU/bonzai checkchar.prg ok ok ok ok ok ok fail fail ok ok ok ok ok n/a fail
../REU/bonzai reudetect.prg ok ok ok ok ok ok ok ok ok ok ok ok ok n/a ok
../REU/cpuport cpuport.prg ok ok ok ok ok n/a n/a ok fail fail n/a ok fail n/a fail
../REU/detectsize detectreu.prg ok ok ok ok ok ok ok ok ok ok timeout ok ok ok timeout
../REU/floatingbus floating.prg ok ok n/a fail fail fail ok ok ok ok n/a fail fail n/a fail
../REU/floatingbus floating-a.prg ok ok n/a fail fail fail ok ok ok ok n/a fail fail n/a fail
../REU/floatingbus floating-b.prg ok ok n/a fail fail fail ok ok ok ok n/a fail fail n/a fail
../REU/floatingbus floating2.prg (must always timeout) timeout (ok) timeout (ok) n/a timeout (ok) ok (fail) timeout (ok) timeout (ok) timeout (ok) timeout (ok) timeout (ok) n/a ok (fail) timeout (ok) n/a timeout (ok)
../REU/floatingbus floating3a.prg ok ok n/a fail fail fail ok ok ok ok n/a fail ok n/a fail
../REU/floatingbus floating3b.prg ok ok n/a fail fail fail ok ok timeout timeout n/a fail timeout n/a fail
../REU/floatingbus floating4a.prg ok ok n/a fail ok fail ok ok ok ok n/a ok fail n/a fail
../REU/floatingbus floating4b.prg ok ok n/a fail fail fail ok ok fail fail n/a fail fail n/a fail
../REU/floatingbus floating4c.prg ok ok n/a fail fail fail ok ok ok ok n/a fail fail n/a fail
../REU/floatingbus floating4d.prg ok ok n/a fail fail fail ok ok ok ok n/a fail fail n/a fail
../REU/mirrors mirrors128k.prg ok ok n/a fail ok fail ok ok ok ok n/a ok fail n/a fail
../REU/mirrors mirrors256k.prg ok ok n/a fail ok fail ok ok fail fail n/a ok fail n/a fail
../REU/mirrors mirrors512k.prg ok ok ok ok ok ok ok ok ok ok n/a ok ok n/a fail
../REU/mirrors mirrors1m.prg ok ok n/a fail ok fail ok ok ok ok n/a ok fail n/a fail
../REU/mirrors mirrors2m.prg ok ok n/a fail ok fail ok ok ok ok n/a ok fail n/a fail
../REU/mirrors mirrors4m.prg ok ok n/a fail ok fail ok ok ok ok n/a ok fail n/a fail
../REU/mirrors mirrors8m.prg ok ok n/a fail ok fail ok ok ok ok n/a ok fail n/a fail
../REU/mirrors mirrors16m.prg ok ok n/a fail ok fail ok ok ok ok n/a ok fail n/a fail
../REU/misc twoblocks-auto.prg ok ok ok ok ok ok ok ok ok ok fail ok fail fail fail
../REU/misc twoblocks-ff00-auto.prg ok ok ok ok ok ok ok ok ok ok fail ok 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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../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
../REU/ramlink reuverify128k.prg ok ok n/a timeout ok timeout ok ok ok ok n/a ok fail n/a timeout
../REU/ramlink reuverify256k.prg ok ok n/a timeout timeout timeout ok ok ok ok n/a timeout fail n/a timeout
../REU/ramlink reuverify512k.prg ok ok ok ok ok ok ok ok ok ok n/a ok ok n/a timeout
../REU/ramlink reuverify1m.prg ok ok n/a timeout ok timeout ok ok ok ok n/a ok fail n/a timeout
../REU/ramlink reuverify2m.prg ok ok n/a timeout ok timeout ok ok ok ok n/a ok fail n/a timeout
../REU/ramlink reuverify4m.prg ok ok n/a timeout ok timeout ok ok ok ok n/a ok fail n/a timeout
../REU/ramlink reuverify8m.prg ok ok n/a timeout ok timeout ok ok ok ok n/a ok fail n/a timeout
../REU/reutiming reutiming.prg ok ok ok ok ok ok ok ok ok ok ok ok ok ok fail
../REU/reutiming2 a.prg PAL screenshot ok ok fail ok ok fail fail fail fail fail fail ok fail fail fail
../REU/reutiming2 a2.prg PAL screenshot ok ok fail ok ok fail fail fail fail fail n/a ok fail n/a fail
../REU/reutiming2 b.prg PAL screenshot ok ok fail ok ok fail fail fail fail fail fail ok fail fail fail
../REU/reutiming2 b2.prg PAL screenshot ok ok fail fail ok fail fail fail fail fail n/a ok fail n/a fail
../REU/reutiming2 b3.prg PAL screenshot ok ok fail ok ok fail fail fail fail fail n/a ok fail n/a fail
../REU/reutiming2 c.prg PAL screenshot fail fail fail fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 c2.prg PAL screenshot ok fail fail fail ok fail fail fail fail fail n/a ok fail n/a fail
../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
../REU/reutiming2 d.prg PAL screenshot ok fail ok ok fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 d2.prg PAL screenshot ok fail ok ok fail fail fail fail fail fail n/a fail fail n/a fail
../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
../REU/reutiming2 e.prg PAL ok fail ok fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 e2.prg PAL ok ok ok ok ok ok fail fail ok ok n/a ok ok n/a fail
../REU/reutiming2 e3.prg PAL ok fail ok fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 e4.prg PAL ok fail ok fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 e5.prg PAL ok fail ok fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 e6.prg PAL ok fail ok fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 f.prg PAL ok ok ok ok ok ok fail fail ok ok n/a ok ok n/a fail
../REU/reutiming2 f2.prg PAL ok ok ok ok ok ok fail fail fail fail n/a ok ok n/a fail
../REU/reutiming2 f3.prg PAL ok fail ok fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 f4.prg PAL ok fail ok fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 g.prg PAL ok ok ok ok ok ok fail fail ok ok n/a ok ok n/a fail
../REU/reutiming2 g2.prg PAL ok ok ok ok ok ok fail fail ok ok n/a ok ok n/a fail
../REU/reutiming2 g3.prg PAL ok fail ok fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 g4.prg PAL ok fail ok fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 e-m2.prg PAL ok ok fail fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 e2-m2.prg PAL ok ok ok ok ok ok fail fail ok ok n/a ok ok n/a fail
../REU/reutiming2 e3-m2.prg PAL ok ok fail fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 e4-m2.prg PAL ok fail fail fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 e5-m2.prg PAL ok fail fail fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 e6-m2.prg PAL ok fail fail fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 f-m2.prg PAL ok ok ok ok ok ok fail fail ok ok n/a ok ok n/a fail
../REU/reutiming2 f2-m2.prg PAL ok ok ok ok ok ok fail fail fail fail n/a ok ok n/a fail
../REU/reutiming2 f3-m2.prg PAL ok fail fail fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 f4-m2.prg PAL ok fail fail fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 g-m2.prg PAL ok ok ok ok ok ok fail fail ok ok n/a ok ok n/a fail
../REU/reutiming2 g2-m2.prg PAL ok ok ok ok ok ok fail fail ok ok n/a ok ok n/a fail
../REU/reutiming2 g3-m2.prg PAL ok fail fail fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/reutiming2 g4-m2.prg PAL ok fail fail fail fail fail fail fail fail fail n/a fail fail n/a fail
../REU/rmw-trigger rmwtrigger-rom.prg ok ok fail ok ok ok fail fail fail fail fail ok fail n/a fail
../REU/rmw-trigger rmwtrigger-ram.prg ok ok fail ok ok ok fail fail fail fail fail ok fail n/a fail
../REU/xfertiming xfertiming-cmp.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail ok ok ok fail fail
../REU/xfertiming xfertiming-swap.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail ok ok ok fail fail
../REU/xfertiming xfertiming-swap2.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail ok ok ok fail fail
../REU/xfertiming xfertiming-toreu.prg PAL screenshot ok ok ok ok ok fail fail fail fail fail ok ok ok fail fail
../REU/xfertiming xfertiming-toc64.prg PAL screenshot ok ok ok ok ok fail ok ok fail fail ok ok ok fail fail
../GEO-RAM georam64.prg ok ok n/a n/a ok n/a ok ok ok ok fail ok fail timeout ok
../GEO-RAM georamtest-auto.prg ok ok n/a n/a ok n/a ok ok ok ok timeout ok ok timeout ok
../GEO-RAM newtest-auto.prg ok ok n/a n/a ok n/a ok ok ok ok timeout ok fail timeout 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
../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
../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
../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
../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
../drive/diskid diskid1.prg (diskid.d64) ok ok ok ok ok ok ok ok ok ok ok ok ok fail 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
../drive/hls-protection hlstest.prg (hlstest.g64) ok ok ok ok timeout ok ok ok fail fail n/a timeout fail n/a fail
../drive/iecdelay iec-bus-delay-auto.prg ok ok ok ok ok ok ok ok ok ok ok ok ok timeout timeout
../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
../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
../drive/rpm rpm1.prg (rpm.d64) PAL ok ok ok ok ok ok ok ok fail fail fail ok ok fail fail
../drive/rpm rpm1.prg (rpm.g64) PAL ok ok ok ok ok ok ok ok ok ok fail ok ok fail fail
../drive/rpm rpm1.prg PAL ok ok timeout timeout n/a timeout ok ok timeout timeout timeout n/a n/a fail 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
../drive/rpm rpm2.prg (rpm.g64) PAL ok ok ok ok ok ok ok ok ok ok fail ok ok n/a fail
../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
../drive/rpm rpm3.prg (rpm.d64) PAL ok ok ok ok timeout ok ok ok fail fail fail timeout fail n/a fail
../drive/rpm rpm3.prg (rpm.g64) PAL ok ok ok ok timeout ok ok ok fail ok fail timeout timeout n/a fail
../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
../drive/scanner scanner35.prg (scan35.d64) ok ok ok ok ok ok ok ok ok ok timeout ok ok fail timeout
../drive/scanner scanner35e.prg (scan35err.d64) ok ok ok ok ok ok ok ok timeout ok timeout ok ok fail timeout
../drive/scanner scanner40.prg (scan40.d64) ok ok ok ok ok ok ok ok ok ok timeout ok ok fail timeout
../drive/scanner scanner40e.prg (scan40err.d64) ok ok ok ok ok ok ok ok ok ok timeout ok ok fail timeout
../drive/scanner scanner42.prg (scan42.d64) ok ok fail ok ok ok ok ok ok ok fail ok fail fail timeout
../drive/scanner scanner42e.prg (scan42err.d64) ok ok fail ok ok ok ok ok ok ok fail ok fail fail timeout
../drive/scanner scanner35.prg (scan35.g64) ok ok ok ok ok ok ok ok ok ok ok ok fail fail timeout
../drive/scanner scanner40.prg (scan40.g64) ok ok ok ok ok ok ok ok ok ok ok ok fail fail timeout
../drive/scanner scanner42.prg (scan42.g64) ok ok ok ok ok ok ok ok ok ok ok ok fail fail timeout
../drive/skew skew1.prg (skew.d64) ok ok ok fail ok fail ok ok ok ok fail ok ok fail ok
../drive/skew skew1.prg (skew.g64) ok fail fail fail ok fail fail fail ok ok ok ok ok fail ok
../drive/selftest selftest.prg ok ok ok ok ok ok ok ok ok ok timeout ok ok ok timeout
../drive/openbus openbus.prg ok ok ok ok ok fail fail ok fail fail n/a ok fail n/a timeout
../drive/viavarious via1.prg ok ok ok ok ok ok ok ok ok ok fail ok ok fail timeout
../drive/viavarious via2.prg ok ok ok ok ok ok ok ok ok ok fail ok ok fail timeout
../drive/viavarious via3.prg ok ok ok ok fail ok ok ok ok ok fail fail ok fail timeout
../drive/viavarious via3a.prg ok ok ok ok fail ok ok ok ok ok fail fail ok fail timeout
../drive/viavarious via4.prg ok ok ok ok fail ok ok ok ok ok fail fail ok fail timeout
../drive/viavarious via5.prg ok ok ok ok fail ok ok ok ok ok fail fail ok fail timeout
../drive/viavarious via9.prg ok ok ok ok fail ok ok ok ok ok fail fail ok fail timeout
../drive/viavarious via10.prg ok fail ok ok ok ok fail fail fail fail timeout ok ok fail timeout
../drive/viavarious via11.prg ok fail ok ok ok ok fail fail fail fail timeout ok ok fail timeout
../drive/viavarious via12.prg ok fail ok ok ok ok fail fail fail fail timeout ok ok fail timeout
../drive/viavarious via13.prg ok fail ok ok ok ok fail fail fail fail timeout ok ok fail timeout
../drive/viavarious via14.prg ok fail ok ok fail ok fail fail fail fail n/a fail ok n/a timeout
../drive/viavarious via20.prg ok ok ok fail fail fail ok ok ok ok n/a fail ok n/a timeout
../drive/viavarious via21.prg ok ok ok fail fail fail ok ok ok ok n/a fail ok n/a timeout
../vdrive/bustakeover bustakeover.prg (bustakeover.d64) ok ok ok ok fail ok ok ok ok ok ok fail ok n/a timeout
../vdrive/sa-check sacheck.prg (sacheck.d64) ok ok ok ok fail ok ok ok ok ok ok fail ok fail timeout
../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
../memory-expansions c64-georam-emd.prg ok ok n/a n/a ok n/a ok ok ok ok fail ok fail fail ok
../memory-expansions c64-reu-emd.prg ok ok n/a ok ok ok ok ok ok ok ok ok ok fail timeout
../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
../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

1412 tests (504 not shown)

VIC20

tested passed percent
xvic r44764 68 68 100%

100% (68 of 68)

z64k (vic20) 22 May 2023 66 64 96%

96% (64 of 66)

kernal64 (vic20) 1.8.4_b1 68 48 70%

70% (48 of 68)

cham20 20201130 45 21 46%

46% (21 of 45)

Path Chip Type xvic r44764 z64k (vic20) 22 May 2023 kernal64 (vic20) 1.8.4_b1 cham20 20201130
../VIC20/via_pb7 main.prg ok ok fail n/a
../VIC20/via_pb7 main-exp.prg ok ok fail fail
../VIC20/via_t1irqack bandits-via1.prg ok ok ok n/a
../VIC20/via_t1irqack bandits-via2.prg ok ok ok n/a
../VIC20/viavarious via3.prg ok ok ok fail
../VIC20/viavarious via3a.prg ok ok ok fail
../VIC20/viavarious via4.prg ok ok ok fail
../VIC20/viavarious via4a.prg ok ok ok fail
../VIC20/viavarious via5.prg ok ok ok fail
../VIC20/viavarious via9.prg ok ok ok fail
../VIC20/viavarious via10.prg ok ok fail ok
../VIC20/viavarious via11.prg ok ok fail ok
../VIC20/viavarious via12.prg ok ok fail ok
../VIC20/viavarious via13.prg ok ok fail ok
../VIC20/viavarious via20.prg ok fail ok fail
../VIC20/viavarious via21.prg ok fail ok fail
../VIC20/via_sr viasr00.prg ok ok ok n/a
../VIC20/via_sr viasr00ifr.prg ok ok ok n/a
../VIC20/via_sr viasr04.prg ok ok ok n/a
../VIC20/via_sr viasr04ifr.prg ok ok fail n/a
../VIC20/via_sr viasr08.prg ok ok ok n/a
../VIC20/via_sr viasr08ifr.prg ok ok fail n/a
../VIC20/via_sr viasr0c.prg ok ok ok n/a
../VIC20/via_sr viasr0cifr.prg ok ok ok n/a
../VIC20/via_sr viasr10.prg ok ok ok n/a
../VIC20/via_sr viasr10ifr.prg ok ok ok n/a
../VIC20/via_sr viasr14.prg ok ok fail n/a
../VIC20/via_sr viasr14ifr.prg ok ok fail n/a
../VIC20/via_sr viasr18.prg ok ok fail n/a
../VIC20/via_sr viasr18ifr.prg ok ok fail n/a
../VIC20/via_sr viasr1c.prg ok ok ok n/a
../VIC20/via_sr viasr1cifr.prg ok ok ok n/a
../VIC20/via_sr viasr04exp.prg ok ok ok fail
../VIC20/via_sr viasr08exp.prg ok ok ok fail
../VIC20/via_sr viasr10exp.prg ok ok ok fail
../VIC20/via_sr viasr14exp.prg ok ok fail fail
../VIC20/via_sr viasr18exp.prg ok ok fail fail
../VIC20/via_sr viasr00iex.prg ok ok ok fail
../VIC20/via_sr viasr04iex.prg ok ok fail fail
../VIC20/via_sr viasr08iex.prg ok ok fail fail
../VIC20/via_sr viasr0ciex.prg ok ok ok fail
../VIC20/via_sr viasr10iex.prg ok ok ok fail
../VIC20/via_sr viasr14iex.prg ok ok fail fail
../VIC20/via_sr viasr18iex.prg ok ok fail fail
../VIC20/via_sr viasr1ciex.prg ok ok ok fail
../interrupts/irqnmi irqnmi-vic20irq.prg ok ok ok n/a
../interrupts/irqnmi irqnmi-vic20nmi.prg ok ok fail n/a
../interrupts/irqnmi irqnmi-vic20irq-8k.prg ok ok ok fail
../interrupts/irqnmi irqnmi-vic20nmi-8k.prg ok ok fail fail
../GEO-RAM georam20.prg ok n/a ok n/a
../memory-expansions vic20-georam-emd.prg ok n/a ok n/a

80 tests (29 not shown)

C128

tested passed percent
z64k (c128) 22 May 2023 140 135 96%

96% (135 of 140)

x128 r44764 145 105 72%

72% (105 of 145)

kernal64 (c128) 1.8.4_b1 142 103 72%

72% (103 of 142)

Path Chip Type z64k (c128) 22 May 2023 x128 r44764 kernal64 (c128) 1.8.4_b1
../c128/2mhzVIC 2mhz-vic-hires.prg PAL screenshot ok fail fail
../c128/2mhzVIC 2mhz-vic-multicolor.prg PAL screenshot ok fail fail
../c128/2mhzVIC 2mhz-vic-extended.prg PAL screenshot ok fail fail
../c128/2mhzVIC timing-change0.prg PAL screenshot ok fail fail
../c128/burstmode burstcheck0.prg (burstcheck.d64) fail ok timeout
../c128/d030tester d030-2mhzdec.prg PAL screenshot ok fail fail
../c128/d030tester d030-2mhz_hb_80.prg PAL screenshot ok fail fail
../c128/d030tester d030-2mhzmode0.prg PAL screenshot ok fail fail
../c128/d030tester d030-2mhzmode1.prg PAL screenshot ok fail fail
../c128/d030tester d030-2mhzmode2.prg PAL screenshot ok fail fail
../c128/d030tester d030-2mhzmode3.prg PAL screenshot ok fail fail
../c128/d030tester d030-2mhzmode4.prg PAL screenshot ok fail fail
../c128/d030tester d030-2mhzmode5.prg PAL screenshot ok fail fail
../c128/d030tester d030-2mhzmode6.prg PAL screenshot ok fail fail
../c128/d030tester d030-2mhzmode7.prg PAL screenshot ok fail fail
../c128/d030tester d030-173_02_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-1b2_02_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-1f1_02_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-230_02_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-26f_02_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-26f_02_88.prg PAL screenshot ok fail fail
../c128/d030tester d030-2ae_02_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-2ed_02_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-32c_02_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-173_03_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-1b2_03_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-1f1_03_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-230_03_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-26f_03_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-26f_03_88.prg PAL screenshot ok fail fail
../c128/d030tester d030-2ae_03_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-2ed_03_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-32c_03_00.prg PAL screenshot ok fail fail
../c128/d030tester d030-vadjust1.prg PAL screenshot ok fail fail
../c128/d030tester d030-vadjust10.prg PAL screenshot ok fail fail
../c128/d030tester d030-vadjust20.prg PAL screenshot ok fail fail
../c128/d030tester d030-vadjust25.prg PAL screenshot ok fail fail
../c128/d030tester d030-vadjust30.prg PAL screenshot ok fail fail
../c128/ram0001mmu c128modezp0001.prg timeout timeout timeout
../c128/z80/mmu_zp_sp tstz80bk.prg fail fail ok
../drive/scanner scanner1571-35.prg (scan35.d71) (not 100% stable - rerun on failure) fail ok ok
../drive/scanner scanner1571-35e.prg (scan35err.d71) (not 100% stable - rerun on failure) fail timeout ok
../drive/scanner scanner1571-35.prg (scan35.g71) (not 100% stable - rerun on failure) n/a ok n/a
../GEO-RAM georam128.prg n/a ok ok
../memory-expansions c128-ifnram-emd.prg n/a ok n/a
../memory-expansions c128-georam-emd.prg n/a ok ok
../memory-expansions c128-ramcart-emd.prg n/a ok n/a

176 tests (129 not shown)

PLUS4

tested passed percent
xplus4 r44764 3 3 100%

100% (3 of 3)

Path Chip Type xplus4 r44764

9 tests (9 not shown)

PET

tested passed percent
xpet r42777 16 12 75%

75% (12 of 16)

Path Chip Type xpet r42777
../CRTC crtc0.prg screenshot fail
../CRTC crtc3.prg screenshot fail
../CRTC crtc10.prg screenshot fail
../CRTC crtc13.prg screenshot fail

21 tests (17 not shown)

DTV

tested passed percent
x64dtv r44764 267 245 91%

91% (245 of 267)

Path Chip Type x64dtv r44764
../general/Lorenz-2.15/src shsay-dtv.prg (broken test) fail
../general/Lorenz-2.15/src trap1-dtv.prg (broken test) fail
../general/Lorenz-2.15/src trap2-dtv.prg (broken test) fail
../general/Lorenz-2.15/src trap3-dtv.prg (broken test) fail
../general/Lorenz-2.15/src trap4-dtv.prg (broken test) fail
../general/Lorenz-2.15/src trap5-dtv.prg (broken test) fail
../general/Lorenz-2.15/src trap6-dtv.prg (broken test) fail
../general/Lorenz-2.15/src trap7-dtv.prg (broken test) fail
../general/Lorenz-2.15/src trap9-dtv.prg (broken test) fail
../general/Lorenz-2.15/src trap10-dtv.prg (broken test) fail
../general/Lorenz-2.15/src trap11-dtv.prg (broken test) fail
../general/Lorenz-2.15/src trap12-dtv.prg (broken test) fail
../general/Lorenz-2.15/src trap14-dtv.prg (broken test) fail
../general/Lorenz-2.15/src trap15-dtv.prg (broken test) fail
../general/Lorenz-2.15/src trap16-dtv.prg (broken test) fail
../general/Lorenz-2.15/src trap17-dtv.prg (broken test) fail
../general/Lorenz-2.15/src cpuport-dtv.prg (broken test) fail
../general/Lorenz-2.15/src cputiming-dtv.prg (broken test) fail
../general/Lorenz-2.15/src irq-dtv.prg (broken test) fail
../general/Lorenz-2.15/src nmi-dtv.prg (broken test) fail
../general/Lorenz-2.15/src cia2pb6-dtv.prg (broken test) fail
../general/Lorenz-2.15/src cia2pb7-dtv.prg (broken test) fail

278 tests (256 not shown)

SCPU

tested passed percent
kernal64 (scpu64) 1.8.4_b1 8 6 75%

75% (6 of 8)

xscpu64 r44764 9 4 44%

44% (4 of 9)

Path Chip Type kernal64 (scpu64) 1.8.4_b1 xscpu64 r44764
../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

10 tests (5 not shown)

CBM5x0

tested passed percent
xcbm5x0 r44764 2 2 100%

100% (2 of 2)

Path Chip Type xcbm5x0 r44764

6 tests (6 not shown)

CBM2

tested passed percent
xcbm2 r44764 2 2 100%

100% (2 of 2)

kernal64 (cbm2) 1.8.4_b1 2 2 100%

100% (2 of 2)

Path Chip Type xcbm2 r44764 kernal64 (cbm2) 1.8.4_b1

7 tests (7 not shown)

SID

tested passed percent
vsid r44764 2 2 100%

100% (2 of 2)

Path Chip Type vsid r44764

2 tests (2 not shown)