├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── cosmocc_and_windows.md ├── dialog ├── README.md └── dialog_example.dg ├── mojozork ├── LICENSE.txt ├── README.md └── mojozork.c ├── scottadams ├── games │ ├── 0readme.txt │ ├── adv01.dat │ ├── adv02.dat │ ├── adv03.dat │ ├── adv04.dat │ ├── adv05.dat │ ├── adv06.dat │ ├── adv07.dat │ ├── adv08.dat │ ├── adv09.dat │ ├── adv10.dat │ ├── adv11.dat │ ├── adv12.dat │ ├── adv13.dat │ ├── adv14a.dat │ ├── adv14b.dat │ ├── quest1.dat │ ├── quest2.dat │ └── sampler1.dat └── src │ ├── ScottFree │ ├── Definition │ ├── Makefile │ ├── README │ ├── Scott.h │ └── ScottCurses.c │ └── scottzx │ ├── ScottZX.c │ └── Scottzx.h ├── zap ├── README.md ├── cosmo_source │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── ALLOC.c │ ├── build_zap.sh │ ├── common.h │ ├── compare.c │ ├── comptime.c │ ├── getdate.sh │ ├── makefile │ ├── mkcomptime │ ├── mkcomptime.aarch64.elf │ ├── mkcomptime.c │ ├── mkcomptime.com.dbg │ ├── mkctscr │ ├── nmemory.c │ ├── primes.c │ ├── resfile.c │ ├── splitdefs.h │ ├── splitpic.h │ ├── xzsplit │ ├── xzsplit.c │ ├── zap │ ├── zap.aarch64.elf │ ├── zap.c │ ├── zap.com.dbg │ ├── zap.h │ ├── zapres.c │ ├── zasm.c │ ├── zdata.c │ ├── zdir.c │ ├── zerror.c │ ├── zeval.c │ ├── zfixup.c │ ├── zglue │ ├── zglue.c │ ├── zlabel.c │ ├── zlex.c │ ├── zobj.c │ ├── zop.c │ ├── zork2 │ │ ├── %zork2.syms │ │ ├── %zork2.zip │ │ ├── actions.cmp │ │ ├── actions.zap │ │ ├── actions.zil │ │ ├── clock.zap │ │ ├── clock.zil │ │ ├── crufty.xzap │ │ ├── crufty.zil │ │ ├── demons.zap │ │ ├── demons.zil │ │ ├── dungeon.cmp │ │ ├── dungeon.zap │ │ ├── dungeon.zil │ │ ├── macros.zap │ │ ├── macros.zil │ │ ├── main.zap │ │ ├── main.zil │ │ ├── parser.zap │ │ ├── parser.zil │ │ ├── syntax.zap │ │ ├── syntax.zil │ │ ├── verbs.zap │ │ ├── verbs.zil │ │ ├── zap │ │ ├── zap.dbg │ │ ├── zork2.chart │ │ ├── zork2.errors │ │ ├── zork2.syms │ │ ├── zork2.xzap │ │ ├── zork2.zap │ │ ├── zork2.zil │ │ ├── zork2.zip │ │ ├── zork2freq.xzap │ │ └── zork2str.zap │ ├── zsegment.c │ ├── zspix.c │ ├── zsplit │ ├── zsplit.c │ ├── zsplitext.h │ ├── zsres.c │ ├── zstring.c │ ├── zsymout.c │ ├── zsymtab.c │ ├── zsymtest.c │ └── ztable.c └── infocom_source │ ├── ALLOC.c │ ├── compare.c │ ├── comptime.c │ ├── getdate │ ├── makefile │ ├── mkcomptime.c │ ├── nmemory.c │ ├── primes.c │ ├── resfile.c │ ├── splitdefs.h │ ├── splitpic.h │ ├── xzsplit │ ├── xzsplit.c │ ├── zap │ ├── zap.c │ ├── zap.h │ ├── zapres.c │ ├── zasm.c │ ├── zdata.c │ ├── zdir.c │ ├── zerror.c │ ├── zeval.c │ ├── zfixup.c │ ├── zglue │ ├── zglue.c │ ├── zlabel.c │ ├── zlex.c │ ├── zobj.c │ ├── zop.c │ ├── zsegment.c │ ├── zspix.c │ ├── zsplit │ ├── zsplit.c │ ├── zsplitext.h │ ├── zsres.c │ ├── zstring.c │ ├── zsymout.c │ ├── zsymtab.c │ ├── zsymtest.c │ └── ztable.c └── zip ├── cosmo_source ├── README.md ├── makefile ├── phg_zip.c └── phg_zipdefs.h └── infocom_source ├── --notes ├── block.c ├── dip.block ├── dip.c ├── dip.call ├── dip.init ├── dip.ops ├── dipdefs.h ├── ediptst.hex ├── ediptst.pichex ├── ediptst.sum ├── folding.c ├── foo.hex ├── foo.pichex ├── page.c ├── phg_zip.c ├── phg_zipdefs.h ├── zip.c └── zipdefs.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/README.md -------------------------------------------------------------------------------- /cosmocc_and_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/cosmocc_and_windows.md -------------------------------------------------------------------------------- /dialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/dialog/README.md -------------------------------------------------------------------------------- /dialog/dialog_example.dg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/dialog/dialog_example.dg -------------------------------------------------------------------------------- /mojozork/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/mojozork/LICENSE.txt -------------------------------------------------------------------------------- /mojozork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/mojozork/README.md -------------------------------------------------------------------------------- /mojozork/mojozork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/mojozork/mojozork.c -------------------------------------------------------------------------------- /scottadams/games/0readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/0readme.txt -------------------------------------------------------------------------------- /scottadams/games/adv01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/adv01.dat -------------------------------------------------------------------------------- /scottadams/games/adv02.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/adv02.dat -------------------------------------------------------------------------------- /scottadams/games/adv03.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/adv03.dat -------------------------------------------------------------------------------- /scottadams/games/adv04.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/adv04.dat -------------------------------------------------------------------------------- /scottadams/games/adv05.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/adv05.dat -------------------------------------------------------------------------------- /scottadams/games/adv06.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/adv06.dat -------------------------------------------------------------------------------- /scottadams/games/adv07.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/adv07.dat -------------------------------------------------------------------------------- /scottadams/games/adv08.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/adv08.dat -------------------------------------------------------------------------------- /scottadams/games/adv09.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/adv09.dat -------------------------------------------------------------------------------- /scottadams/games/adv10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/adv10.dat -------------------------------------------------------------------------------- /scottadams/games/adv11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/adv11.dat -------------------------------------------------------------------------------- /scottadams/games/adv12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/adv12.dat -------------------------------------------------------------------------------- /scottadams/games/adv13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/adv13.dat -------------------------------------------------------------------------------- /scottadams/games/adv14a.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/adv14a.dat -------------------------------------------------------------------------------- /scottadams/games/adv14b.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/adv14b.dat -------------------------------------------------------------------------------- /scottadams/games/quest1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/quest1.dat -------------------------------------------------------------------------------- /scottadams/games/quest2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/quest2.dat -------------------------------------------------------------------------------- /scottadams/games/sampler1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/games/sampler1.dat -------------------------------------------------------------------------------- /scottadams/src/ScottFree/Definition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/src/ScottFree/Definition -------------------------------------------------------------------------------- /scottadams/src/ScottFree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/src/ScottFree/Makefile -------------------------------------------------------------------------------- /scottadams/src/ScottFree/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/src/ScottFree/README -------------------------------------------------------------------------------- /scottadams/src/ScottFree/Scott.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/src/ScottFree/Scott.h -------------------------------------------------------------------------------- /scottadams/src/ScottFree/ScottCurses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/src/ScottFree/ScottCurses.c -------------------------------------------------------------------------------- /scottadams/src/scottzx/ScottZX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/src/scottzx/ScottZX.c -------------------------------------------------------------------------------- /scottadams/src/scottzx/Scottzx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/scottadams/src/scottzx/Scottzx.h -------------------------------------------------------------------------------- /zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/README.md -------------------------------------------------------------------------------- /zap/cosmo_source/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | .DS_Store 3 | /.aarch64 -------------------------------------------------------------------------------- /zap/cosmo_source/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/.vscode/settings.json -------------------------------------------------------------------------------- /zap/cosmo_source/ALLOC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/ALLOC.c -------------------------------------------------------------------------------- /zap/cosmo_source/build_zap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/build_zap.sh -------------------------------------------------------------------------------- /zap/cosmo_source/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/common.h -------------------------------------------------------------------------------- /zap/cosmo_source/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/compare.c -------------------------------------------------------------------------------- /zap/cosmo_source/comptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/comptime.c -------------------------------------------------------------------------------- /zap/cosmo_source/getdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/getdate.sh -------------------------------------------------------------------------------- /zap/cosmo_source/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/makefile -------------------------------------------------------------------------------- /zap/cosmo_source/mkcomptime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/mkcomptime -------------------------------------------------------------------------------- /zap/cosmo_source/mkcomptime.aarch64.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/mkcomptime.aarch64.elf -------------------------------------------------------------------------------- /zap/cosmo_source/mkcomptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/mkcomptime.c -------------------------------------------------------------------------------- /zap/cosmo_source/mkcomptime.com.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/mkcomptime.com.dbg -------------------------------------------------------------------------------- /zap/cosmo_source/mkctscr: -------------------------------------------------------------------------------- 1 | cc -g -c comptime.c -D'DATE_TIME="3/3/25 21:10"' 2 | -------------------------------------------------------------------------------- /zap/cosmo_source/nmemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/nmemory.c -------------------------------------------------------------------------------- /zap/cosmo_source/primes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/primes.c -------------------------------------------------------------------------------- /zap/cosmo_source/resfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/resfile.c -------------------------------------------------------------------------------- /zap/cosmo_source/splitdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/splitdefs.h -------------------------------------------------------------------------------- /zap/cosmo_source/splitpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/splitpic.h -------------------------------------------------------------------------------- /zap/cosmo_source/xzsplit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/xzsplit -------------------------------------------------------------------------------- /zap/cosmo_source/xzsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/xzsplit.c -------------------------------------------------------------------------------- /zap/cosmo_source/zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zap -------------------------------------------------------------------------------- /zap/cosmo_source/zap.aarch64.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zap.aarch64.elf -------------------------------------------------------------------------------- /zap/cosmo_source/zap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zap.c -------------------------------------------------------------------------------- /zap/cosmo_source/zap.com.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zap.com.dbg -------------------------------------------------------------------------------- /zap/cosmo_source/zap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zap.h -------------------------------------------------------------------------------- /zap/cosmo_source/zapres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zapres.c -------------------------------------------------------------------------------- /zap/cosmo_source/zasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zasm.c -------------------------------------------------------------------------------- /zap/cosmo_source/zdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zdata.c -------------------------------------------------------------------------------- /zap/cosmo_source/zdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zdir.c -------------------------------------------------------------------------------- /zap/cosmo_source/zerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zerror.c -------------------------------------------------------------------------------- /zap/cosmo_source/zeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zeval.c -------------------------------------------------------------------------------- /zap/cosmo_source/zfixup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zfixup.c -------------------------------------------------------------------------------- /zap/cosmo_source/zglue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zglue -------------------------------------------------------------------------------- /zap/cosmo_source/zglue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zglue.c -------------------------------------------------------------------------------- /zap/cosmo_source/zlabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zlabel.c -------------------------------------------------------------------------------- /zap/cosmo_source/zlex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zlex.c -------------------------------------------------------------------------------- /zap/cosmo_source/zobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zobj.c -------------------------------------------------------------------------------- /zap/cosmo_source/zop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zop.c -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/%zork2.syms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/%zork2.syms -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/%zork2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/%zork2.zip -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/actions.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/actions.cmp -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/actions.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/actions.zap -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/actions.zil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/actions.zil -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/clock.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/clock.zap -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/clock.zil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/clock.zil -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/crufty.xzap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/crufty.xzap -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/crufty.zil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/crufty.zil -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/demons.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/demons.zap -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/demons.zil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/demons.zil -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/dungeon.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/dungeon.cmp -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/dungeon.zap: -------------------------------------------------------------------------------- 1 | 2 | .ENDI 3 | -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/dungeon.zil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/dungeon.zil -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/macros.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/macros.zap -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/macros.zil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/macros.zil -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/main.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/main.zap -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/main.zil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/main.zil -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/parser.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/parser.zap -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/parser.zil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/parser.zil -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/syntax.zap: -------------------------------------------------------------------------------- 1 | 2 | .ENDI 3 | -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/syntax.zil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/syntax.zil -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/verbs.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/verbs.zap -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/verbs.zil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/verbs.zil -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/zap -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/zap.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/zap.dbg -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/zork2.chart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/zork2.chart -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/zork2.errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/zork2.errors -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/zork2.syms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/zork2.syms -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/zork2.xzap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/zork2.xzap -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/zork2.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/zork2.zap -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/zork2.zil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/zork2.zil -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/zork2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/zork2.zip -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/zork2freq.xzap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/zork2freq.xzap -------------------------------------------------------------------------------- /zap/cosmo_source/zork2/zork2str.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zork2/zork2str.zap -------------------------------------------------------------------------------- /zap/cosmo_source/zsegment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zsegment.c -------------------------------------------------------------------------------- /zap/cosmo_source/zspix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zspix.c -------------------------------------------------------------------------------- /zap/cosmo_source/zsplit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zsplit -------------------------------------------------------------------------------- /zap/cosmo_source/zsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zsplit.c -------------------------------------------------------------------------------- /zap/cosmo_source/zsplitext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zsplitext.h -------------------------------------------------------------------------------- /zap/cosmo_source/zsres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zsres.c -------------------------------------------------------------------------------- /zap/cosmo_source/zstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zstring.c -------------------------------------------------------------------------------- /zap/cosmo_source/zsymout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zsymout.c -------------------------------------------------------------------------------- /zap/cosmo_source/zsymtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zsymtab.c -------------------------------------------------------------------------------- /zap/cosmo_source/zsymtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/zsymtest.c -------------------------------------------------------------------------------- /zap/cosmo_source/ztable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/cosmo_source/ztable.c -------------------------------------------------------------------------------- /zap/infocom_source/ALLOC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/ALLOC.c -------------------------------------------------------------------------------- /zap/infocom_source/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/compare.c -------------------------------------------------------------------------------- /zap/infocom_source/comptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/comptime.c -------------------------------------------------------------------------------- /zap/infocom_source/getdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/getdate -------------------------------------------------------------------------------- /zap/infocom_source/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/makefile -------------------------------------------------------------------------------- /zap/infocom_source/mkcomptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/mkcomptime.c -------------------------------------------------------------------------------- /zap/infocom_source/nmemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/nmemory.c -------------------------------------------------------------------------------- /zap/infocom_source/primes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/primes.c -------------------------------------------------------------------------------- /zap/infocom_source/resfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/resfile.c -------------------------------------------------------------------------------- /zap/infocom_source/splitdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/splitdefs.h -------------------------------------------------------------------------------- /zap/infocom_source/splitpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/splitpic.h -------------------------------------------------------------------------------- /zap/infocom_source/xzsplit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/xzsplit -------------------------------------------------------------------------------- /zap/infocom_source/xzsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/xzsplit.c -------------------------------------------------------------------------------- /zap/infocom_source/zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zap -------------------------------------------------------------------------------- /zap/infocom_source/zap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zap.c -------------------------------------------------------------------------------- /zap/infocom_source/zap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zap.h -------------------------------------------------------------------------------- /zap/infocom_source/zapres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zapres.c -------------------------------------------------------------------------------- /zap/infocom_source/zasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zasm.c -------------------------------------------------------------------------------- /zap/infocom_source/zdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zdata.c -------------------------------------------------------------------------------- /zap/infocom_source/zdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zdir.c -------------------------------------------------------------------------------- /zap/infocom_source/zerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zerror.c -------------------------------------------------------------------------------- /zap/infocom_source/zeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zeval.c -------------------------------------------------------------------------------- /zap/infocom_source/zfixup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zfixup.c -------------------------------------------------------------------------------- /zap/infocom_source/zglue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zglue -------------------------------------------------------------------------------- /zap/infocom_source/zglue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zglue.c -------------------------------------------------------------------------------- /zap/infocom_source/zlabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zlabel.c -------------------------------------------------------------------------------- /zap/infocom_source/zlex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zlex.c -------------------------------------------------------------------------------- /zap/infocom_source/zobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zobj.c -------------------------------------------------------------------------------- /zap/infocom_source/zop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zop.c -------------------------------------------------------------------------------- /zap/infocom_source/zsegment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zsegment.c -------------------------------------------------------------------------------- /zap/infocom_source/zspix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zspix.c -------------------------------------------------------------------------------- /zap/infocom_source/zsplit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zsplit -------------------------------------------------------------------------------- /zap/infocom_source/zsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zsplit.c -------------------------------------------------------------------------------- /zap/infocom_source/zsplitext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zsplitext.h -------------------------------------------------------------------------------- /zap/infocom_source/zsres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zsres.c -------------------------------------------------------------------------------- /zap/infocom_source/zstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zstring.c -------------------------------------------------------------------------------- /zap/infocom_source/zsymout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zsymout.c -------------------------------------------------------------------------------- /zap/infocom_source/zsymtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zsymtab.c -------------------------------------------------------------------------------- /zap/infocom_source/zsymtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/zsymtest.c -------------------------------------------------------------------------------- /zap/infocom_source/ztable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zap/infocom_source/ztable.c -------------------------------------------------------------------------------- /zip/cosmo_source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/cosmo_source/README.md -------------------------------------------------------------------------------- /zip/cosmo_source/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/cosmo_source/makefile -------------------------------------------------------------------------------- /zip/cosmo_source/phg_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/cosmo_source/phg_zip.c -------------------------------------------------------------------------------- /zip/cosmo_source/phg_zipdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/cosmo_source/phg_zipdefs.h -------------------------------------------------------------------------------- /zip/infocom_source/--notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/--notes -------------------------------------------------------------------------------- /zip/infocom_source/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/block.c -------------------------------------------------------------------------------- /zip/infocom_source/dip.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/dip.block -------------------------------------------------------------------------------- /zip/infocom_source/dip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/dip.c -------------------------------------------------------------------------------- /zip/infocom_source/dip.call: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/dip.call -------------------------------------------------------------------------------- /zip/infocom_source/dip.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/dip.init -------------------------------------------------------------------------------- /zip/infocom_source/dip.ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/dip.ops -------------------------------------------------------------------------------- /zip/infocom_source/dipdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/dipdefs.h -------------------------------------------------------------------------------- /zip/infocom_source/ediptst.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/ediptst.hex -------------------------------------------------------------------------------- /zip/infocom_source/ediptst.pichex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/ediptst.pichex -------------------------------------------------------------------------------- /zip/infocom_source/ediptst.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/ediptst.sum -------------------------------------------------------------------------------- /zip/infocom_source/folding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/folding.c -------------------------------------------------------------------------------- /zip/infocom_source/foo.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/foo.hex -------------------------------------------------------------------------------- /zip/infocom_source/foo.pichex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/foo.pichex -------------------------------------------------------------------------------- /zip/infocom_source/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/page.c -------------------------------------------------------------------------------- /zip/infocom_source/phg_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/phg_zip.c -------------------------------------------------------------------------------- /zip/infocom_source/phg_zipdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/phg_zipdefs.h -------------------------------------------------------------------------------- /zip/infocom_source/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/zip.c -------------------------------------------------------------------------------- /zip/infocom_source/zipdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherDrum/pez/HEAD/zip/infocom_source/zipdefs.h --------------------------------------------------------------------------------