Testbench: Difference between revisions
Jump to navigation
Jump to search
(→C128: r36014 fixed another MMU test) |
m (→last checked) |
||
(124 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 | * [http://www.hoxs64.net/ hoxs64] ([https://github.com/davidhorrocks/hoxs64 github]) (C-64) | ||
* [http://micro64.de/ micro64] (C-64) | * [http://micro64.de/ micro64] (C-64) | ||
* [http://www.z64k.com/ z64k] (C-64, C-128, VIC20) z64k, z128k, z20k (WIP, also has its own GUI to run the tests!) | * [http://www.z64k.com/ z64k] (C-64, C-128, VIC20) z64k, z128k, z20k (WIP, also has its own GUI to run the tests!) | ||
* [http://www.yace64.com/ yace] (C-64) (WIP) | * [http://www.yace64.com/ yace] (C-64) (WIP) | ||
* [http://emu64.de/ emu64] ([https://github.com/ThKattanek/emu64/releases github]) (C-64) (WIP) | |||
* [https://sourceforge.net/projects/deniseemu/ denise] (c64) | |||
* [https://github.com/abbruzze/kernal64 Kernal64] (C-64, C-128, SCPU) (WIP) | |||
need to ask authors of: MESS (C-64, VIC20, PET), Pfau Zeh (VIC20), YAPE (Plus4), jsidplay2 (C64 | : need to ask authors of: MESS (C-64, VIC20, PET), Pfau Zeh (VIC20), YAPE (Plus4), jsidplay2 (C64) | ||
... and the following FPGA based reimplementations: | ... and the following FPGA based reimplementations: | ||
Line 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 | |||
../VICII/vicii_timing/vicii_reg_timing.prg | |||
../VICII/videomode the results are a bit questionable, we need to check the references | |||
=== NTSC fixing === | |||
a lot of tests require cycle exact timing and, since they were originall written for a PAL machine, will not work on NTSC yet | |||
../general/Lorenz-2.15/src trap16.prg | |||
../general/Lorenz-2.15/src trap17.prg | |||
../CPU/sha shaabsy2.prg | |||
../CPU/sha shaabsy3.prg | |||
../CPU/sha shazpy2.prg | |||
../CPU/sha shazpy3.prg | |||
../CPU/shs shsabsy2.prg | |||
../CPU/shs shsabsy3.prg | |||
../CPU/shxy shx-t2.prg | |||
../CPU/shxy shx-test.prg | |||
../CPU/shxy shxy2.prg | |||
../CPU/shxy shyx2.prg | |||
../interrupts/irq-ackn-bug/ | |||
../interrupts/irqdma/ | |||
../VICII/split-tests/modesplit modesplit.prg - check screenshots | |||
../VICII/videomode videomode1_ntsc.prg - check screenshots | |||
../VICII/banking/ | |||
../VICII/border | |||
../VICII/lp-trigger/ | |||
../VICII/spritey/ | |||
../VICII/dentest/ various tests broken on ntsc | |||
../VICII/spritesplit/ | |||
../VICII/spriteenable3/4/5 theres is a stray pixel in the output in NTSC mode (?) check against | |||
real NTSC machine | |||
=== automatic variants === | |||
often for tests that are interactive, we can also build a couple variants with various settings that then can be used for automatic testing | |||
../VICII/border/ vborder_ntsc.prg | |||
../VICII/border/ vborder2_ntsc.prg | |||
../VICII/border/ vborder_ntscold.prg | |||
../VICII/border/ vborder2_ntscold.prg | |||
=== misc === | |||
../drive/writeprotect/ write.d64 the test should not be able to write to the disk (and kill the dir track) | |||
maybe can run automatically if we add an option to mount d64 ro | |||
../VICII/vspbug/ lft-safe-vsp.prg this is not really a test program. replace by a real test perhaps | |||
../CPU/64doc/ sbx.prg runs too long to work with a 32bit timeout | |||
../CPU/64doc/ vsbx.prg runs too long to work with a 32bit timeout | |||
../plus256k/ test.prg fails because of broken autostart | |||
../C64/bankio bankio.prg fails on x128, check if it also happens on real C128 and perhaps adjust the test | |||
Lorenz-2.15/src/ciat2anew.prg properly fix for new CIA, currently a few tests are skipped on new CIA | |||
Lorenz-2.15/src/ciat2bnew.prg | |||
=== Targets === | |||
== last checked == | |||
the date indicated here indicates the last time it was checked for the respective emulator if a new version exists AND if so, a testrun was performed. | |||
note that when new tests have been added, it will normally not be run again for all emulators. | |||
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0" | {| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0" | ||
! | | ! | | ||
! | | ! | version | ||
! | ! | date | ||
! | ! | note | ||
|- | |- | ||
|| | ||z64k (c64) || 30 January 2022 || 16.03.2022 || occasional hang at shutdown, [https://z64k.freeforums.net/thread/3/occasional-hang-when-shutting reported here] | ||
|- | |- | ||
|| | ||denise || git 16/03/2022 || 16.03.2022 | ||
|- | |- | ||
|| | ||z64k (c128/c64) || 30 January 2022 || 16.03.2022 | ||
|| | |||
| | |||
|- | |- | ||
|| | ||hoxs64 || 1.1.0.5 (30 August 2020)|| 16.03.2022 || (dead?) | ||
|| | |||
|- | |- | ||
|| | ||TC64 (cartridge) || 9q || 31.03.2022 | ||
|| | |||
| | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||x64sc || 3.6.2-dev r41951 || 16.03.2022 | ||
|- | |||
||x64 || 3.6.2-dev r41951 || 16.03.2022 | |||
|- | |||
||x128 (c64) || 3.6.2-dev r41951 || 16.03.2022 | |||
|- | |||
||U64 (PAL) || 1.41 || 26.07.2021 || 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 | |||
|- | |||
||micro64 || 20180316 (build 719) || 16.03.2022 || (dead?) a bunch of drive tests fail with timeout | |||
|- | |||
||TC64 (standalone)|| 9q || 30.03.2022 | |||
|- | |||
||emu64 || 20220320 || 20.03.2022 || 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 | |||
|- | |||
||kernal64 (c64) || 1.7.3_b13 || 16.03.2022 | |||
|- | |||
||kernal64 (c128/c64) || 1.7.3_b13 || 16.03.2022 | |||
|- | |||
||z64k (vic20) || 30 January 2022 || 16.03.2022 | |||
|- | |||
||xvic || 3.6.2-dev r41951 || 16.03.2022 | |||
|- | |||
||cham20 || 20201130 || 29.03.2022 || there are some serious problems with getting the result from the core, usb errors etc | |||
|- | |||
||x128 || 3.6.2-dev r41951 || 16.03.2022 | |||
|- | |||
||z64k (c128) || 30 January 2022 || 16.03.2022 | |||
|- | |||
||kernal64 (c128) || 1.7.3_b13 || 16.03.2022 | |||
|- | |||
||xplus4 || 3.6.2-dev r41951 || 16.03.2022 | |||
|- | |||
||xpet || 3.6.2-dev r41951 || 16.03.2022 | |||
|- | |||
||x64dtv || 3.6.2-dev r41951 || 16.03.2022 | |||
|- | |||
||xscpu64 || 3.6.2-dev r41951 || 16.03.2022 | |||
|- | |||
||kernal64 (scpu64)|| 1.7.3_b13 || 16.03.2022 | |||
|- | |||
||xcbm5x0 || 3.6.2-dev r41951 || 16.03.2022 | |||
|- | |||
||xcbm2 || 3.6.2-dev r41951 || 16.03.2022 | |||
|- | |||
||vsid || 3.6.2-dev r41951 || 16.03.2022 | |||
|} | |||
== Results == | |||
=== C64 === | |||
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0" | |||
! | | |||
! | tested | |||
! | passed | |||
! | percent | |||
! | | |||
|- | |||
||denise git 16.03.2022 | |||
||1238 | |||
||1196 | |||
||96% | |||
||{{Progress|96|1196|1238|}} | |||
|- | |||
||x64sc r41951 | |||
||1251 | |||
||1139 | |||
||91% | |||
||{{Progress|91|1139|1251|}} | |||
|- | |||
||hoxs64 1.1.0.5 | |||
||882 | |||
||803 | |||
||91% | |||
||{{Progress|91|803|882|}} | |||
|- | |||
||z64k (c64) 30 January 2022 | |||
||1199 | |||
||1091 | |||
||90% | |||
||{{Progress|90|1091|1199|}} | |||
|- | |||
||TC64 9q (cartridge) | |||
||975 | |||
||882 | |||
||90% | |||
||{{Progress|90|882|975|}} | |||
|- | |||
||z64k (c128/c64) 30 January 2022 | |||
||1199 | |||
||1046 | |||
||87% | |||
||{{Progress|87|1046|1199|}} | |||
|- | |||
||x64 r41951 | |||
||1251 | |||
||1014 | |||
||81% | |||
||{{Progress|81|1014|1251|}} | |||
|- | |||
||x128 (c64) r41951 | |||
||1206 | |||
||949 | |||
||78% | |||
||{{Progress|78|949|1206|}} | |||
|- | |||
||U64 1.41 (PAL) | |||
||918 | |||
||709 | |||
||77% | |||
||{{Progress|77|709|918|}} | |||
|- | |||
||kernal64 (c64) 1.7.3_b13 | |||
||1155 | |||
||880 | |||
||76% | |||
||{{Progress|76|880|1155|}} | |||
|- | |||
||TC64 9q (standalone) | |||
||1165 | |||
||878 | |||
||75% | |||
||{{Progress|75|878|1165|}} | |||
|- | |||
||kernal64 (c128/c64) 1.7.3_b13 | |||
||1155 | |||
||875 | |||
||75% | |||
||{{Progress|75|875|1155|}} | |||
|- | |||
||micro64 1.00.2018.03.16 (build 719) | |||
||1062 | |||
||807 | |||
||75% | |||
||{{Progress|75|807|1062|}} | |||
|- | |||
||yace 2.2.0.47 | |||
||860 | |||
||427 | |||
||49% | |||
||{{Progress|49|427|860|}} | |||
|- | |||
||emu64 20220320 | |||
||1087 | |||
||486 | |||
||44% | |||
||{{Progress|44|486|1087|}} | |||
|- | |||
|} | |||
{| class="wikitable sortable" border="1" cellpadding="2" cellspacing="0" | |||
! |Path | |||
! |Chip | |||
! |Type | |||
! width="80pt" |x64sc r41951 | |||
! width="80pt" |x64 r41951 | |||
! width="80pt" |x128 (c64) r41951 | |||
! width="80pt" |hoxs64 1.1.0.5 | |||
! width="80pt" |z64k (c64) 30 January 2022 | |||
! width="80pt" |z64k (c128/c64) 30 January 2022 | |||
! width="80pt" |micro64 1.00.2018.03.16 (build 719) | |||
! width="80pt" |denise git 16.03.2022 | |||
! width="80pt" |kernal64 (c64) 1.7.3_b13 | |||
! width="80pt" |kernal64 (c128/c64) 1.7.3_b13 | |||
! width="80pt" |emu64 20220320 | |||
! width="80pt" |yace 2.2.0.47 | |||
! width="80pt" |TC64 9q (cartridge) | |||
! width="80pt" |TC64 9q (standalone) | |||
! width="80pt" |U64 1.41 (PAL) | |||
|- | |||
||[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:lime;"|fail (ok) | |||
|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.prg?format=raw c64-pass.prg] | |||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 137: | Line 352: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/../ | ||[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> | ||
|| | |||
||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:lime;"|fail (ok) | |||
|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.prg?format=raw c64-pass.prg] | |||
|| | || | ||
||screenshot | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 161: | Line 388: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |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.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:lightblue;"|timeout | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (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.crt?format=raw c64-pass.crt]) | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 173: | Line 422: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 183: | Line 428: | ||
|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: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/. | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/ ./selftest] ([https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./selftest/c64-fail.crt?format=raw c64-fail.crt]) <small>(must always fail)</small> | ||
|| | || | ||
| | ||screenshot | ||
|style="background: | |style="background:lime;"|fail (ok) | ||
|style="background: | |style="background:lime;"|fail (ok) | ||
|style="background: | |style="background:lime;"|fail (ok) | ||
|style="background: | |style="background:lime;"|fail (ok) | ||
|style="background: | |style="background:lime;"|fail (ok) | ||
|style="background: | |style="background:lime;"|fail (ok) | ||
|style="background: | |style="background:lime;"|fail (ok) | ||
|style="background: | |style="background:lime;"|fail (ok) | ||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background:lime;"|fail (ok) | |||
|style="background: | |style="background:lime;"|fail (ok) | ||
|style="background: | |style="background:lime;"|fail (ok) | ||
|style="background: | |style="background:lime;"|fail (ok) | ||
|style="background: | |||
|style="background: | |||
|style="background: | |||
|style="background:lightgrey;"|n/a | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/. | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/./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 | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"| | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lightgrey;"|n/a | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/raminitpattern/ ../C64/raminitpattern] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/raminitpattern/cyberloadtest.prg?format=raw cyberloadtest.prg] | ||
| | || | ||
| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 339: | Line 480: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 355: | Line 490: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/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 | ||
Line 361: | Line 497: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|- | |||
|style="background:lightgrey;"|[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] | |||
|style="background:lightgrey;"| | |||
|style="background:lightgrey;"|analyzer | |||
|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 | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|style="background:lightgrey;"|n/a | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/raminitpattern/ ../C64/raminitpattern] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/raminitpattern/platoontest.prg?format=raw platoontest.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 378: | Line 540: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 387: | Line 546: | ||
|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/typicaltest.prg?format=raw typicaltest.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:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 403: | Line 566: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/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:lime;"|ok | |style="background:lime;"|ok | ||
Line 410: | Line 574: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 423: | Line 580: | ||
|style="background: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 | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[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:lime;"|ok | |style="background:lime;"|ok | ||
Line 434: | Line 593: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 447: | Line 599: | ||
|style="background: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 | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[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 | ||
Line 458: | Line 612: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 471: | Line 618: | ||
|style="background: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 | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/defaults/ ../C64/autostart/defaults] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/defaults/test.prg?format=raw test.prg] <small>(load the test using "TEST" as filename)</small> | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/defaults/ ../C64/autostart/defaults] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../C64/autostart/defaults/test.prg?format=raw test.prg] ([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: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: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:red;"|fail | |||
|style="background:red;"|fail | |||
|- | |||
|style="background:lightgrey;"|[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] <small>( should show different numbers on repeated runs)</small> | |||
|style="background:lightgrey;"| | |||
|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 | |||
|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/../ | ||[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 518: | Line 688: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 531: | Line 694: | ||
|style="background: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 | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | |style="background:lightgrey;"|[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;"| | |||
|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 | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|- | |||
|style="background:lightgrey;"|[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;"| | |||
|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 | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|- | |||
|style="background:lightgrey;"|[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;"| | |||
|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 | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|- | |||
|style="background:lightgrey;"|[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;"| | |||
|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 | |||
|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 | ||
Line 543: | Line 784: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:red;"|fail | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 558: | Line 792: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../ | |style="background:lightgrey;"|[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] | ||
|| | |style="background:lightgrey;"| | ||
|style="background: | |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 | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|style="background:lightgrey;"|manual | |||
|- | |||
|style="background:lightgrey;"|[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;"| | |||
|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 | |||
|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:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 570: | Line 843: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:red;"|fail | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-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 | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 594: | Line 866: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/ldab.prg?format=raw ldab.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 606: | Line 879: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 619: | Line 889: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ldaz.prg?format=raw ldaz.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 630: | Line 901: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 639: | Line 907: | ||
|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/ldazx.prg?format=raw ldazx.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 654: | Line 923: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 666: | Line 936: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 679: | Line 946: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ldaax.prg?format=raw ldaax.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 690: | Line 958: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 699: | Line 964: | ||
|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:lime;"|ok | |style="background:lime;"|ok | ||
Line 714: | Line 980: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 726: | Line 993: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 739: | Line 1,003: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ldaiy.prg?format=raw ldaiy.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 750: | Line 1,015: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 759: | Line 1,021: | ||
|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:lime;"|ok | |style="background:lime;"|ok | ||
Line 774: | Line 1,037: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/stazx.prg?format=raw stazx.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 786: | Line 1,050: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 799: | Line 1,060: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/staa.prg?format=raw staa.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 810: | Line 1,072: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 819: | Line 1,078: | ||
|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 | |style="background:lime;"|ok | ||
Line 834: | Line 1,094: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/staay.prg?format=raw staay.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 846: | Line 1,107: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 859: | Line 1,117: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/staix.prg?format=raw staix.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 867: | Line 1,126: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 883: | Line 1,136: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/staiy.prg?format=raw staiy.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 894: | Line 1,148: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 903: | Line 1,154: | ||
|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 | ||
|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 918: | Line 1,170: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/ldxz.prg?format=raw ldxz.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 930: | Line 1,183: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 943: | Line 1,193: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ldxzy.prg?format=raw ldxzy.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 954: | Line 1,205: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 963: | Line 1,211: | ||
|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 | ||
|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 978: | Line 1,227: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/ldxay.prg?format=raw ldxay.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 990: | Line 1,240: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,003: | Line 1,250: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/stxz.prg?format=raw stxz.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,014: | Line 1,262: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,023: | Line 1,268: | ||
|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 | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,038: | Line 1,284: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-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] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,050: | Line 1,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:lime;"|ok | ||
Line 1,063: | Line 1,307: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ldyb.prg?format=raw ldyb.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,071: | Line 1,316: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,087: | Line 1,326: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ldyz.prg?format=raw ldyz.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,095: | Line 1,335: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,111: | Line 1,345: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ldyzx.prg?format=raw ldyzx.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,122: | Line 1,357: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,131: | Line 1,363: | ||
|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 | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,146: | Line 1,379: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 1,158: | Line 1,392: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,171: | Line 1,402: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/styz.prg?format=raw styz.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,182: | Line 1,414: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,191: | Line 1,420: | ||
|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:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,206: | Line 1,436: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 1,218: | Line 1,449: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,231: | Line 1,459: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/taxn.prg?format=raw taxn.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,242: | Line 1,471: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,251: | Line 1,477: | ||
|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:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,266: | Line 1,493: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 1,278: | Line 1,506: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,291: | Line 1,516: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/tyan.prg?format=raw tyan.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,299: | Line 1,525: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,315: | Line 1,535: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/tsxn.prg?format=raw tsxn.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,326: | Line 1,547: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,335: | Line 1,553: | ||
|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 | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,350: | Line 1,569: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/phan.prg?format=raw phan.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,362: | Line 1,582: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,375: | Line 1,592: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/plan.prg?format=raw plan.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,386: | Line 1,604: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,395: | Line 1,610: | ||
|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 | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,410: | Line 1,626: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/plpn.prg?format=raw plpn.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,422: | Line 1,639: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,435: | Line 1,649: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/inxn.prg?format=raw inxn.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,446: | 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 | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,455: | Line 1,667: | ||
|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 | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,470: | Line 1,683: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background: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/dexn.prg?format=raw dexn.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,482: | Line 1,696: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,495: | Line 1,706: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/deyn.prg?format=raw deyn.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,503: | Line 1,715: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,519: | Line 1,725: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/incz.prg?format=raw incz.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,530: | Line 1,737: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,539: | Line 1,743: | ||
|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/inczx.prg?format=raw inczx.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,554: | Line 1,759: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/inca.prg?format=raw inca.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,566: | Line 1,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:lime;"|ok | ||
Line 1,579: | Line 1,782: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/incax.prg?format=raw incax.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,590: | Line 1,794: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,599: | Line 1,800: | ||
|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 | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,614: | Line 1,816: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/deczx.prg?format=raw deczx.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,626: | Line 1,829: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,639: | Line 1,839: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/deca.prg?format=raw deca.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,650: | Line 1,851: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,659: | Line 1,857: | ||
|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:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,674: | Line 1,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: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/asln.prg?format=raw asln.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,686: | Line 1,886: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,699: | Line 1,896: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/aslz.prg?format=raw aslz.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,707: | Line 1,905: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,723: | Line 1,915: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/aslzx.prg?format=raw aslzx.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,731: | Line 1,924: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,747: | Line 1,934: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/asla.prg?format=raw asla.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,758: | Line 1,946: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,767: | Line 1,952: | ||
|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/aslax.prg?format=raw aslax.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,782: | Line 1,968: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/lsrn.prg?format=raw lsrn.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,794: | Line 1,981: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,807: | Line 1,991: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/lsrz.prg?format=raw lsrz.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,818: | Line 2,003: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,827: | Line 2,009: | ||
|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/lsrzx.prg?format=raw lsrzx.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,842: | Line 2,025: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/lsra.prg?format=raw lsra.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,854: | Line 2,038: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,867: | Line 2,048: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/lsrax.prg?format=raw lsrax.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,878: | Line 2,060: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,887: | Line 2,066: | ||
|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/roln.prg?format=raw roln.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,902: | Line 2,082: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/rolz.prg?format=raw rolz.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,914: | Line 2,095: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,927: | Line 2,105: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/rolzx.prg?format=raw rolzx.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,935: | Line 2,114: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,951: | Line 2,124: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/rola.prg?format=raw rola.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,962: | Line 2,136: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,971: | Line 2,142: | ||
|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/rolax.prg?format=raw rolax.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,986: | Line 2,158: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/rorn.prg?format=raw rorn.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 1,998: | Line 2,171: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,011: | Line 2,181: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/rorz.prg?format=raw rorz.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,022: | Line 2,193: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,031: | Line 2,199: | ||
|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/rorzx.prg?format=raw rorzx.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,046: | Line 2,215: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/rora.prg?format=raw rora.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,058: | Line 2,228: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,071: | Line 2,238: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/rorax.prg?format=raw rorax.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,082: | Line 2,250: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,091: | Line 2,256: | ||
|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/andb.prg?format=raw andb.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,106: | Line 2,272: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/andz.prg?format=raw andz.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,118: | Line 2,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:lime;"|ok | ||
Line 2,131: | Line 2,295: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/andzx.prg?format=raw andzx.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,139: | Line 2,304: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,155: | Line 2,314: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/anda.prg?format=raw anda.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,166: | Line 2,326: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,175: | Line 2,332: | ||
|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/andax.prg?format=raw andax.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,190: | Line 2,348: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/anday.prg?format=raw anday.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,202: | Line 2,361: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,215: | Line 2,371: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/andix.prg?format=raw andix.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,226: | Line 2,383: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,235: | Line 2,389: | ||
|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:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,250: | Line 2,405: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/orab.prg?format=raw orab.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,262: | Line 2,418: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,275: | Line 2,428: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/oraz.prg?format=raw oraz.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,286: | Line 2,440: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,295: | Line 2,446: | ||
|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/orazx.prg?format=raw orazx.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,310: | Line 2,462: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 2,322: | Line 2,475: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,335: | Line 2,485: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/oraax.prg?format=raw oraax.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,343: | Line 2,494: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,359: | Line 2,504: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/oraay.prg?format=raw oraay.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,367: | Line 2,513: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,383: | Line 2,523: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/oraix.prg?format=raw oraix.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,394: | Line 2,535: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,403: | Line 2,541: | ||
|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 | ||
|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,418: | Line 2,557: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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 2,430: | Line 2,570: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,443: | Line 2,580: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/eorz.prg?format=raw eorz.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,454: | Line 2,592: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,463: | Line 2,598: | ||
|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:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,478: | Line 2,614: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/eora.prg?format=raw eora.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,490: | Line 2,627: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,503: | Line 2,637: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/eorax.prg?format=raw eorax.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,514: | Line 2,649: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,523: | Line 2,655: | ||
|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/eoray.prg?format=raw eoray.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,538: | Line 2,671: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/eorix.prg?format=raw eorix.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,550: | Line 2,684: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,563: | Line 2,694: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/eoriy.prg?format=raw eoriy.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,571: | 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:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,587: | Line 2,713: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/clcn.prg?format=raw clcn.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,598: | Line 2,725: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,607: | Line 2,731: | ||
|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 | ||
|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,622: | Line 2,747: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/cldn.prg?format=raw cldn.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,634: | Line 2,760: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,647: | Line 2,770: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/sedn.prg?format=raw sedn.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,658: | Line 2,782: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,667: | Line 2,788: | ||
|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/clin.prg?format=raw clin.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,682: | Line 2,804: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/sein.prg?format=raw sein.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,694: | Line 2,817: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,707: | Line 2,827: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/clvn.prg?format=raw clvn.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,718: | Line 2,839: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,727: | Line 2,845: | ||
|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/adcb.prg?format=raw adcb.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,742: | Line 2,861: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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/adcz.prg?format=raw adcz.prg] | |||
|| | |||
|| | |||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,754: | 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:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,767: | Line 2,884: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/adczx.prg?format=raw adczx.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,775: | Line 2,893: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,791: | Line 2,903: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/adca.prg?format=raw adca.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,799: | Line 2,912: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,815: | Line 2,922: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/adcax.prg?format=raw adcax.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,823: | Line 2,931: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,839: | Line 2,941: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/adcay.prg?format=raw adcay.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,847: | Line 2,950: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,863: | Line 2,960: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/adcix.prg?format=raw adcix.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,871: | Line 2,969: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,887: | Line 2,979: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/adciy.prg?format=raw adciy.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,896: | Line 2,989: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,909: | Line 2,997: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/sbcb.prg?format=raw sbcb.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,921: | Line 3,009: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,932: | Line 3,016: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/sbcz.prg?format=raw sbcz.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,944: | 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:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,957: | Line 3,035: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/sbczx.prg?format=raw sbczx.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,967: | Line 3,045: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,983: | Line 3,055: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/sbca.prg?format=raw sbca.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 2,993: | Line 3,066: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,005: | Line 3,073: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/sbcax.prg?format=raw sbcax.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 | ||
Line 3,017: | Line 3,084: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,029: | Line 3,091: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/sbcay.prg?format=raw sbcay.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 | ||
Line 3,041: | Line 3,103: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,053: | Line 3,110: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/sbcix.prg?format=raw sbcix.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 | ||
Line 3,065: | Line 3,122: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,077: | Line 3,129: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/sbciy.prg?format=raw sbciy.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 | ||
Line 3,089: | Line 3,141: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,101: | Line 3,148: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cmpb.prg?format=raw cmpb.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 | ||
Line 3,113: | Line 3,160: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,125: | Line 3,167: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cmpz.prg?format=raw cmpz.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 | ||
Line 3,137: | Line 3,179: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,149: | Line 3,186: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cmpzx.prg?format=raw cmpzx.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 | ||
Line 3,161: | Line 3,198: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,173: | Line 3,205: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cmpa.prg?format=raw cmpa.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: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 | ||
Line 3,210: | Line 3,235: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,223: | Line 3,245: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cmpay.prg?format=raw cmpay.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,234: | 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:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cmpix.prg?format=raw cmpix.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,256: | Line 3,274: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,271: | Line 3,283: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cmpiy.prg?format=raw cmpiy.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 | ||
Line 3,282: | Line 3,293: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,295: | Line 3,302: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cpxb.prg?format=raw cpxb.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,319: | Line 3,321: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/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:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,330: | Line 3,332: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,343: | Line 3,340: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cpxa.prg?format=raw cpxa.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,354: | Line 3,351: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,367: | Line 3,359: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cpyb.prg?format=raw cpyb.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 | ||
Line 3,378: | Line 3,369: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,391: | Line 3,378: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/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 | ||
Line 3,402: | Line 3,388: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,415: | Line 3,397: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/cpya.prg?format=raw cpya.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,439: | Line 3,416: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/bitz.prg?format=raw bitz.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/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:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/brkn.prg?format=raw brkn.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,509: | Line 3,472: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/rtin.prg?format=raw rtin.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,521: | Line 3,484: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|style="background:lime;"|ok | |||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/jsrw.prg?format=raw jsrw.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,533: | Line 3,503: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,544: | Line 3,510: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/rtsn.prg?format=raw rtsn.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,557: | Line 3,522: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,568: | Line 3,529: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/jmpw.prg?format=raw jmpw.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,580: | Line 3,540: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,593: | Line 3,548: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/jmpi.prg?format=raw jmpi.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,604: | Line 3,559: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,617: | Line 3,567: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/beqr.prg?format=raw beqr.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,628: | Line 3,578: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,641: | Line 3,586: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/bner.prg?format=raw bner.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,653: | Line 3,598: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,664: | Line 3,605: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/bmir.prg?format=raw bmir.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,676: | Line 3,616: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,689: | Line 3,624: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/bplr.prg?format=raw bplr.prg] | ||
|| | |||
|| | || | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
Line 3,700: | Line 3,635: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|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,712: | Line 3,642: | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background:lime;"|ok | |style="background:lime;"|ok | ||
|style="background: | |style="background:lime;"|ok | ||
|- | |- | ||
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ | ||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/ ../general/Lorenz-2.15/src] [https://sourceforge.net/p/vice-emu/code/HEAD/tree/testprogs/testbench/../general/Lorenz-2.15/src/bcsr.prg?format=raw bcsr.prg] | ||
|| | || | ||