A program designed to exhaustively test expansion memory on an Apple IIGS.
Go to file
Dagen Brock c497b6bc5c
Merge pull request #6 from digarok/refresh
Refresh
2021-03-23 16:38:38 -05:00
.github/workflows update checkout action 2021-03-23 15:15:48 -05:00
docs update doc 2021-03-23 11:05:26 -05:00
src believe this is the correct decrement logic 2021-03-23 10:56:33 -05:00
.gitignore update ignore 2021-03-23 11:13:20 -05:00
LICENSE Initial commit 2015-11-27 20:12:19 -06:00
README.md update readme 2021-03-23 11:10:08 -05:00
brun fix RAM detection code and SCB text colorizer 2018-10-30 13:08:08 -05:00
make_bootable add build script 2015-11-28 14:21:44 -06:00
make_po.sh try cicd 2021-03-23 11:15:05 -05:00

README.md

MiniMemoryTester

A program designed to exhaustively test expansion memory on an Apple IIGS.

Boot up and running a quick test

Usage

There is a full manual here http://goo.gl/NiKJTH

Downloads

Disk images are available on the project releases page. https://github.com/digarok/MiniMemoryTester/releases

You can transfer them to a 3.5" or 5.25" disk using ADT Pro or you can run it from your modern SD storage systems.

Build

You can build it yourself using the make_po.sh Bash script under Linux or OSX. It should be trivial to write an approximate BAT or Powershell for Windows, if that is what you are using. Note - You need to edit the following lines in the make_bootable script:

# SET THESE TOOLS UP ON YOUR SYSTEM AND UPDATE THE PATHS HERE TO BUILD
CADIUS="../tools/Cadius"
MERLIN="../tools/Merlin32_v1.0/MacOSX/Merlin32"

You will obviously also need those two tools on your system. They are available here:

Merlin32 - 65c816 Assembler

CADIUS - Command line disk image tool

About the code

Historical Context:

This grew out of a much simpler memory tester I had thrown together earlier in 2015. At one point, I started working with an Apple II hardware vendor to include their feedback as feature enhancements which eventually caused a large rewrite to support a more robust configuration. There are some hacks and magic sprinkled in, but I tried to keep it pretty sane.

Some of the code paths for the testing engine are a bit generic, at the expense of speed, but to make the code more managable (for me!) Other parts are, perhaps, oddly organize but with a mind on keeping overall test loops relatively tight.
Overall, this program favors configurability and reusable code, over speed. There's also not much thought to stability, but I wanted to allow the user to try to test their RAM as they see fit.

Technical Context:

Large portions of this program are written in one of the two cpu modes:

m=1 (short) x=0 (long)

or

m=0 (long) x=0 (long)

The 8-bit test modes, in particular, are written with a short accumulator, but long index registers. This way it can easily scan a bank of memory using the X register from 0000 to FFFF. Likewise, when running 16-bit test modes, we write 16 bit values using a long accumulator, and still using long index registers. However, we also increment or decrement by two, since it writes two bytes at a time with a long accumulator.

TestInit function is where the "BEGIN TEST" code starts.

Again, see the manual at the top for the full description of the software and usage.