On the interpreter end, there are a couple of things that could
be done to speed it up. (Of course, with freely available source, anyone
can implement these as they choose.)
o) Optionally removing the VM-ish paging. (This was done by
Stefan Jokisch but isn't in the main ZIP distribution.) This of course helps
speed things up on machines with 24 or 32 bit addressing and enough memory to
hold the whole datafile in memory at once. Optionally (at compile time)
since it's obviously preferable to leave it in for those that want it
(willing to trade time for RAM usage) or need it.
o) Changing the main interpret() loop to being a function-pointer
based dispatch, which definitely is constant speed no matter which
Z-machine instruction you're emulating.
There are probably many others, but these are the most obvious that
can be done while still maintaining portable C code.
-- unknown@apple.com Apple II Forever These opinions are mine, not Apple's.