├── .gitignore ├── BIN ├── MAPEDIT.EXE ├── SPRITED.EXE └── SPROTATE.EXE ├── INC ├── LORES.H ├── MAPIO.H └── TILER.H ├── LIB ├── LORES.LIB ├── LORESBC.LIB ├── LRPROF.LIB └── LRPROFBC.LIB ├── LICENSE.txt ├── README.md ├── SRC ├── DEMOS │ ├── BUILD.BAT │ ├── BUILDBC.BAT │ ├── DEMO.MAP │ ├── DEMO.SET │ ├── DEMO.SPR │ ├── SPRTDEMO.C │ ├── SPRTDEMO.EXE │ ├── SPRTDEMO.PRJ │ ├── SPRTPROF.EXE │ ├── TESTLINE.C │ ├── TILEDEMO.C │ ├── TILEDEMO.EXE │ ├── TILEPROF.EXE │ ├── TILEPSNO.EXE │ └── TILESNOW.EXE ├── INVADERS │ ├── BUILD.BAT │ ├── EARTH.MAP │ ├── EARTH.SET │ ├── FIREBALL.SPR │ ├── INVADER.SPR │ ├── INVADERP.EXE │ ├── INVADERS.C │ ├── INVADERS.EXE │ ├── KEYBOARD.ASM │ ├── KEYBOARD.H │ ├── MISSILE.SPR │ ├── SCANCODE.H │ ├── SHIP.SPR │ └── readme.md ├── ISOTEST │ ├── BUILD.BAT │ ├── ISOTEST.C │ ├── ISOTEST.EXE │ ├── KEYBOARD.ASM │ ├── KEYBOARD.H │ ├── SCANCODE.H │ ├── isotest.map │ ├── isotest.png │ ├── isotest.set │ ├── isotest.xcf │ └── readme.md ├── LIB │ ├── BUILD.BAT │ ├── BUILDBC.BAT │ ├── CGAOPS.ASM │ ├── LORES.C │ ├── MAPIO.C │ ├── MEMOPS.ASM │ ├── TILER.C │ └── TIMER.ASM ├── MAPEDIT │ ├── BUILD.BAT │ ├── BUILDBC.BAT │ ├── MAPEDIT.C │ ├── README.md │ ├── SPRITED.C │ ├── SPROTATE.C │ ├── mapedit_000.png │ ├── pnmread.c │ ├── slicer.c │ ├── sprited_000.png │ └── spriter.c ├── MAZERUNR │ ├── BUILD.BAT │ ├── BUILDBC.BAT │ ├── EXIT.MAP │ ├── EXIT.SET │ ├── MAZEBC.EXE │ ├── MAZEPROF.EXE │ ├── MAZERUNR.C │ ├── MAZERUNR.EXE │ ├── PLAYER.SPR │ ├── README.md │ ├── WALLS.MAP │ └── WALLS.SET ├── PLATFORM │ ├── BUILD.BAT │ ├── BUILDBC.BAT │ ├── HERO.SPR │ ├── KEYBOARD.ASM │ ├── KEYBOARD.H │ ├── PLATBC.EXE │ ├── PLATFORM.C │ ├── PLATFORM.EXE │ ├── PLATFRMP.EXE │ ├── PLATPBC.EXE │ ├── SCANCODE.H │ ├── WORLD.MAP │ ├── WORLD.SET │ ├── hero.pnm │ ├── platform.png │ └── readme.md ├── REPELZ │ ├── BUILD.BAT │ ├── BUILDBC.BAT │ ├── DRONE.SPR │ ├── FIREBALL.SPR │ ├── INTRO.TXT │ ├── KEYBOARD.ASM │ ├── KEYBOARD.H │ ├── MISSILE.SPR │ ├── REPELPBC.EXE │ ├── REPELZ.C │ ├── REPELZ.EXE │ ├── REPELZBC.EXE │ ├── REPELZP.EXE │ ├── SAM.SPR │ ├── SCANCODE.H │ ├── WARZONE.MAP │ ├── WARZONE.SET │ └── readme.md └── SHOWPNM │ ├── BARS1.PNM │ ├── BARS2.PNM │ ├── BMW.PNM │ ├── DESKPRO.PNM │ ├── MMWED.PNM │ ├── NUNSET.PNM │ ├── RACECAR.PNM │ ├── ROD.PNM │ ├── SHOWPNM.C │ ├── SHOWPNM.EXE │ └── TAHOE.PNM └── sprtdemo_000.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /BIN/MAPEDIT.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/BIN/MAPEDIT.EXE -------------------------------------------------------------------------------- /BIN/SPRITED.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/BIN/SPRITED.EXE -------------------------------------------------------------------------------- /BIN/SPROTATE.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/BIN/SPROTATE.EXE -------------------------------------------------------------------------------- /INC/LORES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/INC/LORES.H -------------------------------------------------------------------------------- /INC/MAPIO.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/INC/MAPIO.H -------------------------------------------------------------------------------- /INC/TILER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/INC/TILER.H -------------------------------------------------------------------------------- /LIB/LORES.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/LIB/LORES.LIB -------------------------------------------------------------------------------- /LIB/LORESBC.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/LIB/LORESBC.LIB -------------------------------------------------------------------------------- /LIB/LRPROF.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/LIB/LRPROF.LIB -------------------------------------------------------------------------------- /LIB/LRPROFBC.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/LIB/LRPROFBC.LIB -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/README.md -------------------------------------------------------------------------------- /SRC/DEMOS/BUILD.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/DEMOS/BUILD.BAT -------------------------------------------------------------------------------- /SRC/DEMOS/BUILDBC.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/DEMOS/BUILDBC.BAT -------------------------------------------------------------------------------- /SRC/DEMOS/DEMO.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/DEMOS/DEMO.MAP -------------------------------------------------------------------------------- /SRC/DEMOS/DEMO.SET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/DEMOS/DEMO.SET -------------------------------------------------------------------------------- /SRC/DEMOS/DEMO.SPR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/DEMOS/DEMO.SPR -------------------------------------------------------------------------------- /SRC/DEMOS/SPRTDEMO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/DEMOS/SPRTDEMO.C -------------------------------------------------------------------------------- /SRC/DEMOS/SPRTDEMO.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/DEMOS/SPRTDEMO.EXE -------------------------------------------------------------------------------- /SRC/DEMOS/SPRTDEMO.PRJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/DEMOS/SPRTDEMO.PRJ -------------------------------------------------------------------------------- /SRC/DEMOS/SPRTPROF.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/DEMOS/SPRTPROF.EXE -------------------------------------------------------------------------------- /SRC/DEMOS/TESTLINE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/DEMOS/TESTLINE.C -------------------------------------------------------------------------------- /SRC/DEMOS/TILEDEMO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/DEMOS/TILEDEMO.C -------------------------------------------------------------------------------- /SRC/DEMOS/TILEDEMO.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/DEMOS/TILEDEMO.EXE -------------------------------------------------------------------------------- /SRC/DEMOS/TILEPROF.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/DEMOS/TILEPROF.EXE -------------------------------------------------------------------------------- /SRC/DEMOS/TILEPSNO.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/DEMOS/TILEPSNO.EXE -------------------------------------------------------------------------------- /SRC/DEMOS/TILESNOW.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/DEMOS/TILESNOW.EXE -------------------------------------------------------------------------------- /SRC/INVADERS/BUILD.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/INVADERS/BUILD.BAT -------------------------------------------------------------------------------- /SRC/INVADERS/EARTH.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/INVADERS/EARTH.MAP -------------------------------------------------------------------------------- /SRC/INVADERS/EARTH.SET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/INVADERS/EARTH.SET -------------------------------------------------------------------------------- /SRC/INVADERS/FIREBALL.SPR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/INVADERS/FIREBALL.SPR -------------------------------------------------------------------------------- /SRC/INVADERS/INVADER.SPR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/INVADERS/INVADER.SPR -------------------------------------------------------------------------------- /SRC/INVADERS/INVADERP.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/INVADERS/INVADERP.EXE -------------------------------------------------------------------------------- /SRC/INVADERS/INVADERS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/INVADERS/INVADERS.C -------------------------------------------------------------------------------- /SRC/INVADERS/INVADERS.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/INVADERS/INVADERS.EXE -------------------------------------------------------------------------------- /SRC/INVADERS/KEYBOARD.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/INVADERS/KEYBOARD.ASM -------------------------------------------------------------------------------- /SRC/INVADERS/KEYBOARD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/INVADERS/KEYBOARD.H -------------------------------------------------------------------------------- /SRC/INVADERS/MISSILE.SPR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/INVADERS/MISSILE.SPR -------------------------------------------------------------------------------- /SRC/INVADERS/SCANCODE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/INVADERS/SCANCODE.H -------------------------------------------------------------------------------- /SRC/INVADERS/SHIP.SPR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/INVADERS/SHIP.SPR -------------------------------------------------------------------------------- /SRC/INVADERS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/INVADERS/readme.md -------------------------------------------------------------------------------- /SRC/ISOTEST/BUILD.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/ISOTEST/BUILD.BAT -------------------------------------------------------------------------------- /SRC/ISOTEST/ISOTEST.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/ISOTEST/ISOTEST.C -------------------------------------------------------------------------------- /SRC/ISOTEST/ISOTEST.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/ISOTEST/ISOTEST.EXE -------------------------------------------------------------------------------- /SRC/ISOTEST/KEYBOARD.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/ISOTEST/KEYBOARD.ASM -------------------------------------------------------------------------------- /SRC/ISOTEST/KEYBOARD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/ISOTEST/KEYBOARD.H -------------------------------------------------------------------------------- /SRC/ISOTEST/SCANCODE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/ISOTEST/SCANCODE.H -------------------------------------------------------------------------------- /SRC/ISOTEST/isotest.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/ISOTEST/isotest.map -------------------------------------------------------------------------------- /SRC/ISOTEST/isotest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/ISOTEST/isotest.png -------------------------------------------------------------------------------- /SRC/ISOTEST/isotest.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/ISOTEST/isotest.set -------------------------------------------------------------------------------- /SRC/ISOTEST/isotest.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/ISOTEST/isotest.xcf -------------------------------------------------------------------------------- /SRC/ISOTEST/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/ISOTEST/readme.md -------------------------------------------------------------------------------- /SRC/LIB/BUILD.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/LIB/BUILD.BAT -------------------------------------------------------------------------------- /SRC/LIB/BUILDBC.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/LIB/BUILDBC.BAT -------------------------------------------------------------------------------- /SRC/LIB/CGAOPS.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/LIB/CGAOPS.ASM -------------------------------------------------------------------------------- /SRC/LIB/LORES.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/LIB/LORES.C -------------------------------------------------------------------------------- /SRC/LIB/MAPIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/LIB/MAPIO.C -------------------------------------------------------------------------------- /SRC/LIB/MEMOPS.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/LIB/MEMOPS.ASM -------------------------------------------------------------------------------- /SRC/LIB/TILER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/LIB/TILER.C -------------------------------------------------------------------------------- /SRC/LIB/TIMER.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/LIB/TIMER.ASM -------------------------------------------------------------------------------- /SRC/MAPEDIT/BUILD.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAPEDIT/BUILD.BAT -------------------------------------------------------------------------------- /SRC/MAPEDIT/BUILDBC.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAPEDIT/BUILDBC.BAT -------------------------------------------------------------------------------- /SRC/MAPEDIT/MAPEDIT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAPEDIT/MAPEDIT.C -------------------------------------------------------------------------------- /SRC/MAPEDIT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAPEDIT/README.md -------------------------------------------------------------------------------- /SRC/MAPEDIT/SPRITED.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAPEDIT/SPRITED.C -------------------------------------------------------------------------------- /SRC/MAPEDIT/SPROTATE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAPEDIT/SPROTATE.C -------------------------------------------------------------------------------- /SRC/MAPEDIT/mapedit_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAPEDIT/mapedit_000.png -------------------------------------------------------------------------------- /SRC/MAPEDIT/pnmread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAPEDIT/pnmread.c -------------------------------------------------------------------------------- /SRC/MAPEDIT/slicer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAPEDIT/slicer.c -------------------------------------------------------------------------------- /SRC/MAPEDIT/sprited_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAPEDIT/sprited_000.png -------------------------------------------------------------------------------- /SRC/MAPEDIT/spriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAPEDIT/spriter.c -------------------------------------------------------------------------------- /SRC/MAZERUNR/BUILD.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAZERUNR/BUILD.BAT -------------------------------------------------------------------------------- /SRC/MAZERUNR/BUILDBC.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAZERUNR/BUILDBC.BAT -------------------------------------------------------------------------------- /SRC/MAZERUNR/EXIT.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAZERUNR/EXIT.MAP -------------------------------------------------------------------------------- /SRC/MAZERUNR/EXIT.SET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAZERUNR/EXIT.SET -------------------------------------------------------------------------------- /SRC/MAZERUNR/MAZEBC.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAZERUNR/MAZEBC.EXE -------------------------------------------------------------------------------- /SRC/MAZERUNR/MAZEPROF.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAZERUNR/MAZEPROF.EXE -------------------------------------------------------------------------------- /SRC/MAZERUNR/MAZERUNR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAZERUNR/MAZERUNR.C -------------------------------------------------------------------------------- /SRC/MAZERUNR/MAZERUNR.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAZERUNR/MAZERUNR.EXE -------------------------------------------------------------------------------- /SRC/MAZERUNR/PLAYER.SPR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAZERUNR/PLAYER.SPR -------------------------------------------------------------------------------- /SRC/MAZERUNR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAZERUNR/README.md -------------------------------------------------------------------------------- /SRC/MAZERUNR/WALLS.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAZERUNR/WALLS.MAP -------------------------------------------------------------------------------- /SRC/MAZERUNR/WALLS.SET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/MAZERUNR/WALLS.SET -------------------------------------------------------------------------------- /SRC/PLATFORM/BUILD.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/BUILD.BAT -------------------------------------------------------------------------------- /SRC/PLATFORM/BUILDBC.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/BUILDBC.BAT -------------------------------------------------------------------------------- /SRC/PLATFORM/HERO.SPR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/HERO.SPR -------------------------------------------------------------------------------- /SRC/PLATFORM/KEYBOARD.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/KEYBOARD.ASM -------------------------------------------------------------------------------- /SRC/PLATFORM/KEYBOARD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/KEYBOARD.H -------------------------------------------------------------------------------- /SRC/PLATFORM/PLATBC.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/PLATBC.EXE -------------------------------------------------------------------------------- /SRC/PLATFORM/PLATFORM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/PLATFORM.C -------------------------------------------------------------------------------- /SRC/PLATFORM/PLATFORM.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/PLATFORM.EXE -------------------------------------------------------------------------------- /SRC/PLATFORM/PLATFRMP.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/PLATFRMP.EXE -------------------------------------------------------------------------------- /SRC/PLATFORM/PLATPBC.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/PLATPBC.EXE -------------------------------------------------------------------------------- /SRC/PLATFORM/SCANCODE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/SCANCODE.H -------------------------------------------------------------------------------- /SRC/PLATFORM/WORLD.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/WORLD.MAP -------------------------------------------------------------------------------- /SRC/PLATFORM/WORLD.SET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/WORLD.SET -------------------------------------------------------------------------------- /SRC/PLATFORM/hero.pnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/hero.pnm -------------------------------------------------------------------------------- /SRC/PLATFORM/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/platform.png -------------------------------------------------------------------------------- /SRC/PLATFORM/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/PLATFORM/readme.md -------------------------------------------------------------------------------- /SRC/REPELZ/BUILD.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/BUILD.BAT -------------------------------------------------------------------------------- /SRC/REPELZ/BUILDBC.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/BUILDBC.BAT -------------------------------------------------------------------------------- /SRC/REPELZ/DRONE.SPR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/DRONE.SPR -------------------------------------------------------------------------------- /SRC/REPELZ/FIREBALL.SPR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/FIREBALL.SPR -------------------------------------------------------------------------------- /SRC/REPELZ/INTRO.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/INTRO.TXT -------------------------------------------------------------------------------- /SRC/REPELZ/KEYBOARD.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/KEYBOARD.ASM -------------------------------------------------------------------------------- /SRC/REPELZ/KEYBOARD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/KEYBOARD.H -------------------------------------------------------------------------------- /SRC/REPELZ/MISSILE.SPR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/MISSILE.SPR -------------------------------------------------------------------------------- /SRC/REPELZ/REPELPBC.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/REPELPBC.EXE -------------------------------------------------------------------------------- /SRC/REPELZ/REPELZ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/REPELZ.C -------------------------------------------------------------------------------- /SRC/REPELZ/REPELZ.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/REPELZ.EXE -------------------------------------------------------------------------------- /SRC/REPELZ/REPELZBC.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/REPELZBC.EXE -------------------------------------------------------------------------------- /SRC/REPELZ/REPELZP.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/REPELZP.EXE -------------------------------------------------------------------------------- /SRC/REPELZ/SAM.SPR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/SAM.SPR -------------------------------------------------------------------------------- /SRC/REPELZ/SCANCODE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/SCANCODE.H -------------------------------------------------------------------------------- /SRC/REPELZ/WARZONE.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/WARZONE.MAP -------------------------------------------------------------------------------- /SRC/REPELZ/WARZONE.SET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/WARZONE.SET -------------------------------------------------------------------------------- /SRC/REPELZ/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/REPELZ/readme.md -------------------------------------------------------------------------------- /SRC/SHOWPNM/BARS1.PNM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/SHOWPNM/BARS1.PNM -------------------------------------------------------------------------------- /SRC/SHOWPNM/BARS2.PNM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/SHOWPNM/BARS2.PNM -------------------------------------------------------------------------------- /SRC/SHOWPNM/BMW.PNM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/SHOWPNM/BMW.PNM -------------------------------------------------------------------------------- /SRC/SHOWPNM/DESKPRO.PNM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/SHOWPNM/DESKPRO.PNM -------------------------------------------------------------------------------- /SRC/SHOWPNM/MMWED.PNM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/SHOWPNM/MMWED.PNM -------------------------------------------------------------------------------- /SRC/SHOWPNM/NUNSET.PNM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/SHOWPNM/NUNSET.PNM -------------------------------------------------------------------------------- /SRC/SHOWPNM/RACECAR.PNM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/SHOWPNM/RACECAR.PNM -------------------------------------------------------------------------------- /SRC/SHOWPNM/ROD.PNM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/SHOWPNM/ROD.PNM -------------------------------------------------------------------------------- /SRC/SHOWPNM/SHOWPNM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/SHOWPNM/SHOWPNM.C -------------------------------------------------------------------------------- /SRC/SHOWPNM/SHOWPNM.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/SHOWPNM/SHOWPNM.EXE -------------------------------------------------------------------------------- /SRC/SHOWPNM/TAHOE.PNM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/SRC/SHOWPNM/TAHOE.PNM -------------------------------------------------------------------------------- /sprtdemo_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmenk/LORES/HEAD/sprtdemo_000.png --------------------------------------------------------------------------------