├── .gitattributes ├── .gitignore ├── DEPENDS ├── FontStuff ├── Font.c ├── Font.co ├── Font.h ├── Font.i ├── Font.s ├── Font.so ├── LoadFile.co ├── LoadFile.h ├── MANIFEST ├── Makefile.mac ├── NormalBuildOutput ├── mm.font └── stack.i ├── LICENSE ├── MANIFEST ├── Makefile ├── Makefile.mac ├── NormalBuildOutput ├── README.md ├── Text ├── LEGEND ├── MANIFEST ├── OptionList ├── PowerupTemplate.ls └── WallTemplate.ls ├── anim.h ├── app_proto.h ├── availmem.c ├── castle.h ├── cinepak.c ├── clip.c ├── compile_commands.json ├── ctst.c ├── ctst.catsym ├── ctst.orig ├── ctst.s ├── dssupport ├── BlockFile.h ├── CPakSubscriber.h ├── ControlSubscriber.h ├── DS.lib ├── DataAcq.h ├── DataAcq.lib ├── DataStream.h ├── DataStreamDebug.h ├── DataStreamLib.h ├── ItemPool.h ├── JoinSubscriber.h ├── MANIFEST ├── MakeName.h ├── MemPool.h ├── MsgUtils.h ├── SAnimSubscriber.h ├── SAudioSubscriber.h ├── SemHelper.h ├── Subscriber.lib ├── SubscriberUtils.h ├── ThreadHelper.h ├── codec.h └── codec.lib ├── elkabong.c ├── file.c ├── flow.h ├── font.co ├── font.h ├── font.so ├── genmessage.c ├── imgfile.c ├── imgfile.h ├── leveldef.c ├── levelfile.c ├── loadloaf.c ├── loaf.h ├── loafit ├── MANIFEST ├── Makefile ├── Makefile.mac ├── NormalBuildOutput ├── app_proto.h ├── loafanim ├── loafanim.c ├── loafanim.catsym ├── loafanim.dbg ├── loafanim.sym ├── loafit ├── loafit.c ├── loafit.catsym ├── loafit.dbg └── loafit.h ├── map.c ├── misc.asm ├── music.lib ├── ob_exit.c ├── ob_george.c ├── ob_head.c ├── ob_powerup.c ├── ob_powerup.h ├── ob_spider.c ├── ob_trigger.c ├── ob_zombie.c ├── objects.c ├── objects.h ├── option.c ├── option.h ├── project.asm ├── rend.c ├── rend.s ├── shoot.c ├── sound.c ├── sound.h ├── soundinterface.c ├── soundinterface.h ├── statscreen.c ├── textstuff.c ├── textstuff.h ├── thread.c ├── timing.c ├── titleseq.c └── zombietitle.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cache/ 2 | *.o 3 | .exrc 4 | -------------------------------------------------------------------------------- /DEPENDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/DEPENDS -------------------------------------------------------------------------------- /FontStuff/Font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/FontStuff/Font.c -------------------------------------------------------------------------------- /FontStuff/Font.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/FontStuff/Font.co -------------------------------------------------------------------------------- /FontStuff/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/FontStuff/Font.h -------------------------------------------------------------------------------- /FontStuff/Font.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/FontStuff/Font.i -------------------------------------------------------------------------------- /FontStuff/Font.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/FontStuff/Font.s -------------------------------------------------------------------------------- /FontStuff/Font.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/FontStuff/Font.so -------------------------------------------------------------------------------- /FontStuff/LoadFile.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/FontStuff/LoadFile.co -------------------------------------------------------------------------------- /FontStuff/LoadFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/FontStuff/LoadFile.h -------------------------------------------------------------------------------- /FontStuff/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/FontStuff/MANIFEST -------------------------------------------------------------------------------- /FontStuff/Makefile.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/FontStuff/Makefile.mac -------------------------------------------------------------------------------- /FontStuff/NormalBuildOutput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/FontStuff/NormalBuildOutput -------------------------------------------------------------------------------- /FontStuff/mm.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/FontStuff/mm.font -------------------------------------------------------------------------------- /FontStuff/stack.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/FontStuff/stack.i -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/MANIFEST -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/Makefile.mac -------------------------------------------------------------------------------- /NormalBuildOutput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/NormalBuildOutput -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/README.md -------------------------------------------------------------------------------- /Text/LEGEND: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/Text/LEGEND -------------------------------------------------------------------------------- /Text/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/Text/MANIFEST -------------------------------------------------------------------------------- /Text/OptionList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/Text/OptionList -------------------------------------------------------------------------------- /Text/PowerupTemplate.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/Text/PowerupTemplate.ls -------------------------------------------------------------------------------- /Text/WallTemplate.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/Text/WallTemplate.ls -------------------------------------------------------------------------------- /anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/anim.h -------------------------------------------------------------------------------- /app_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/app_proto.h -------------------------------------------------------------------------------- /availmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/availmem.c -------------------------------------------------------------------------------- /castle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/castle.h -------------------------------------------------------------------------------- /cinepak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/cinepak.c -------------------------------------------------------------------------------- /clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/clip.c -------------------------------------------------------------------------------- /compile_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/compile_commands.json -------------------------------------------------------------------------------- /ctst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/ctst.c -------------------------------------------------------------------------------- /ctst.catsym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/ctst.catsym -------------------------------------------------------------------------------- /ctst.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/ctst.orig -------------------------------------------------------------------------------- /ctst.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/ctst.s -------------------------------------------------------------------------------- /dssupport/BlockFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/BlockFile.h -------------------------------------------------------------------------------- /dssupport/CPakSubscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/CPakSubscriber.h -------------------------------------------------------------------------------- /dssupport/ControlSubscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/ControlSubscriber.h -------------------------------------------------------------------------------- /dssupport/DS.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/DS.lib -------------------------------------------------------------------------------- /dssupport/DataAcq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/DataAcq.h -------------------------------------------------------------------------------- /dssupport/DataAcq.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/DataAcq.lib -------------------------------------------------------------------------------- /dssupport/DataStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/DataStream.h -------------------------------------------------------------------------------- /dssupport/DataStreamDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/DataStreamDebug.h -------------------------------------------------------------------------------- /dssupport/DataStreamLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/DataStreamLib.h -------------------------------------------------------------------------------- /dssupport/ItemPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/ItemPool.h -------------------------------------------------------------------------------- /dssupport/JoinSubscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/JoinSubscriber.h -------------------------------------------------------------------------------- /dssupport/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/MANIFEST -------------------------------------------------------------------------------- /dssupport/MakeName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/MakeName.h -------------------------------------------------------------------------------- /dssupport/MemPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/MemPool.h -------------------------------------------------------------------------------- /dssupport/MsgUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/MsgUtils.h -------------------------------------------------------------------------------- /dssupport/SAnimSubscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/SAnimSubscriber.h -------------------------------------------------------------------------------- /dssupport/SAudioSubscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/SAudioSubscriber.h -------------------------------------------------------------------------------- /dssupport/SemHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/SemHelper.h -------------------------------------------------------------------------------- /dssupport/Subscriber.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/Subscriber.lib -------------------------------------------------------------------------------- /dssupport/SubscriberUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/SubscriberUtils.h -------------------------------------------------------------------------------- /dssupport/ThreadHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/ThreadHelper.h -------------------------------------------------------------------------------- /dssupport/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/codec.h -------------------------------------------------------------------------------- /dssupport/codec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/dssupport/codec.lib -------------------------------------------------------------------------------- /elkabong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/elkabong.c -------------------------------------------------------------------------------- /file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/file.c -------------------------------------------------------------------------------- /flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/flow.h -------------------------------------------------------------------------------- /font.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/font.co -------------------------------------------------------------------------------- /font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/font.h -------------------------------------------------------------------------------- /font.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/font.so -------------------------------------------------------------------------------- /genmessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/genmessage.c -------------------------------------------------------------------------------- /imgfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/imgfile.c -------------------------------------------------------------------------------- /imgfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/imgfile.h -------------------------------------------------------------------------------- /leveldef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/leveldef.c -------------------------------------------------------------------------------- /levelfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/levelfile.c -------------------------------------------------------------------------------- /loadloaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loadloaf.c -------------------------------------------------------------------------------- /loaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loaf.h -------------------------------------------------------------------------------- /loafit/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loafit/MANIFEST -------------------------------------------------------------------------------- /loafit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loafit/Makefile -------------------------------------------------------------------------------- /loafit/Makefile.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loafit/Makefile.mac -------------------------------------------------------------------------------- /loafit/NormalBuildOutput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loafit/NormalBuildOutput -------------------------------------------------------------------------------- /loafit/app_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loafit/app_proto.h -------------------------------------------------------------------------------- /loafit/loafanim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loafit/loafanim -------------------------------------------------------------------------------- /loafit/loafanim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loafit/loafanim.c -------------------------------------------------------------------------------- /loafit/loafanim.catsym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loafit/loafanim.catsym -------------------------------------------------------------------------------- /loafit/loafanim.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loafit/loafanim.dbg -------------------------------------------------------------------------------- /loafit/loafanim.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loafit/loafanim.sym -------------------------------------------------------------------------------- /loafit/loafit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loafit/loafit -------------------------------------------------------------------------------- /loafit/loafit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loafit/loafit.c -------------------------------------------------------------------------------- /loafit/loafit.catsym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loafit/loafit.catsym -------------------------------------------------------------------------------- /loafit/loafit.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loafit/loafit.dbg -------------------------------------------------------------------------------- /loafit/loafit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/loafit/loafit.h -------------------------------------------------------------------------------- /map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/map.c -------------------------------------------------------------------------------- /misc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/misc.asm -------------------------------------------------------------------------------- /music.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/music.lib -------------------------------------------------------------------------------- /ob_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/ob_exit.c -------------------------------------------------------------------------------- /ob_george.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/ob_george.c -------------------------------------------------------------------------------- /ob_head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/ob_head.c -------------------------------------------------------------------------------- /ob_powerup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/ob_powerup.c -------------------------------------------------------------------------------- /ob_powerup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/ob_powerup.h -------------------------------------------------------------------------------- /ob_spider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/ob_spider.c -------------------------------------------------------------------------------- /ob_trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/ob_trigger.c -------------------------------------------------------------------------------- /ob_zombie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/ob_zombie.c -------------------------------------------------------------------------------- /objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/objects.c -------------------------------------------------------------------------------- /objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/objects.h -------------------------------------------------------------------------------- /option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/option.c -------------------------------------------------------------------------------- /option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/option.h -------------------------------------------------------------------------------- /project.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/project.asm -------------------------------------------------------------------------------- /rend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/rend.c -------------------------------------------------------------------------------- /rend.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/rend.s -------------------------------------------------------------------------------- /shoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/shoot.c -------------------------------------------------------------------------------- /sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/sound.c -------------------------------------------------------------------------------- /sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/sound.h -------------------------------------------------------------------------------- /soundinterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/soundinterface.c -------------------------------------------------------------------------------- /soundinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/soundinterface.h -------------------------------------------------------------------------------- /statscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/statscreen.c -------------------------------------------------------------------------------- /textstuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/textstuff.c -------------------------------------------------------------------------------- /textstuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/textstuff.h -------------------------------------------------------------------------------- /thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/thread.c -------------------------------------------------------------------------------- /timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/timing.c -------------------------------------------------------------------------------- /titleseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/titleseq.c -------------------------------------------------------------------------------- /zombietitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewhac/EFMM-3DO/HEAD/zombietitle.c --------------------------------------------------------------------------------