Zorkduino icon indicating copy to clipboard operation
Zorkduino copied to clipboard

V4 games are supported but not selectable, V7 is unused

Open rhester72 opened this issue 11 years ago • 0 comments

The JZIP interpreter handles them fine and they are quite playable on the Zorkduino if given the "wrong" extension (i.e. z3 or z5). This affects A Mind Forever Voyaging, Bureaucracy, Nord and Bert, and Trinity.

Changing line 178 of zorkduino.ino from:

if (n == '3' || n == '5' || n == '7') // .z3,.z5,.z7 etc

to:

if (n == '3' || n == '4' | n == '5' || n == '7') // .z3,.z4,.z5,.z7 etc

resolves the issue.

In addition, V7 games were never really supported (or generated) by any interpreter, but V8 (i.e. 512K) games are quite prevalent as created with the Inform compiler. I am not certain whether zorkduino's virtual memory space would properly support a V8 title.

rhester72 avatar May 07 '14 20:05 rhester72