Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ksherlock/zip
ZIP - Infocom Z-code Interpreter Program V2.0 7 Nov 1993 by Mark Howell
https://github.com/ksherlock/zip
Last synced: 3 months ago
JSON representation
ZIP - Infocom Z-code Interpreter Program V2.0 7 Nov 1993 by Mark Howell
- Host: GitHub
- URL: https://github.com/ksherlock/zip
- Owner: ksherlock
- Created: 2018-01-27T18:17:55.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-27T18:21:09.000Z (almost 7 years ago)
- Last Synced: 2024-04-24T16:15:42.232Z (6 months ago)
- Language: C
- Size: 73.2 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.1st
Awesome Lists containing this project
- AwesomeInterpreter - zip
README
ZIP - Infocom Z-code Interpreter Program V2.0 7 Nov 1993
--------------------------------------------------------Author:
Mark Howell ([email protected])
Contents:
readme.1st - this file
Makefile - Unix makefile
amiga.mak - Amiga Aztec C makefile
msc.mak - Microsoft Quick C makefile
vms.mak - VMS VAX C makefile
control.c - Sources
extern.c
fileio.c
getopt.c
input.c
interpre.c
math.c
memory.c
object.c
operand.c
osdepend.c
property.c
screen.c
text.c
variable.c
zip.c
ztypes.h - Header file
amigaio.c - Machine specific I/O drivers
mscio.c
smgio.c
unixio.cBuilding:
Unix: make
DOS: nmake /F msc.mak
VMS: mms/desc=vms.mak
Amiga: Make file is amiga.mak
Bugs:
Please report bugs and portability bugs to the author.
Interpreter:
zip - This interpreter will run all Infocom V1 to V5 games. It includes
support for timeouts in Border Zone, screen displays in Beyond Zork
and implements the #record debugging function, etc.usage: zip [options] story-file-name
options are:
-l n - number of lines in display
-c n - number of columns in display
-r n - right margin (default = 0)
-t n - top margin (default = 0)The lines and columns options are only useful if the I/O driver
cannot automatically work out the size of the screen.