├── .github └── FUNDING.yml ├── .gitignore ├── BENCH.BAT ├── BENCH ├── ARCH.BNC ├── NORMAL.BNC ├── PHILS.BNC └── QUICK.BNC ├── CHANGELOG.MD ├── DATA ├── ADLIBFX.BIN ├── CMSATT.BIN ├── CMSFM.BIN ├── CMSFREQ.BIN ├── CMSPITCH.BIN ├── PCSPK.BIN ├── SC55.BIN ├── TANDY.BIN └── TG300.BIN ├── DOOM.TCF ├── DOOM1.TCF ├── DOOM2.TCF ├── DOOMU.TCF ├── DOS32A.D32 ├── Dockerfile ├── EXE ├── FDBENCH.EXE └── FDSETUP.EXE ├── FASTDOOM ├── LICENSE ├── Makefile.gnu ├── am_map.c ├── am_map.h ├── cga16.asm ├── cga4.asm ├── cga512.asm ├── cgaafh.asm ├── cgabw.asm ├── cgacvb.asm ├── d_englsh.h ├── d_event.h ├── d_main.c ├── d_main.h ├── d_net.c ├── d_net.h ├── d_player.h ├── d_think.h ├── d_ticcmd.h ├── dbgcfg.h ├── defs.inc ├── dmx.c ├── dmx.h ├── doomdata.h ├── doomdef.h ├── doomstat.h ├── doomtype.h ├── dstrings.h ├── dutils.c ├── dutils.h ├── ega320.asm ├── f_finale.c ├── f_finale.h ├── f_wipe.c ├── f_wipe.h ├── fastmath.h ├── fastmath.inc ├── fdoom.lnk ├── fpummx.asm ├── fpummx.h ├── g_game.c ├── g_game.h ├── gf1_osf.lib ├── herc.asm ├── hu_lib.c ├── hu_lib.h ├── hu_stuff.c ├── hu_stuff.h ├── i_cga16.c ├── i_cga16.h ├── i_cga4.c ├── i_cga4.h ├── i_cga512.c ├── i_cga512.h ├── i_cgaafh.c ├── i_cgaafh.h ├── i_cgabw.c ├── i_cgabw.h ├── i_cgacvb.c ├── i_cgacvb.h ├── i_debug.c ├── i_debug.h ├── i_ega320.c ├── i_ega320.h ├── i_file.c ├── i_file.h ├── i_gamma.c ├── i_gamma.h ├── i_herc.c ├── i_herc.h ├── i_ibm.c ├── i_ibm.h ├── i_incolor.c ├── i_incolor.h ├── i_main.c ├── i_mda.c ├── i_mda.h ├── i_pcp.c ├── i_pcp.h ├── i_random.c ├── i_random.h ├── i_sigma.c ├── i_sigma.h ├── i_sound.c ├── i_sound.h ├── i_system.h ├── i_text.c ├── i_text.h ├── i_vesa.c ├── i_vesa.h ├── i_vga.c ├── i_vga.h ├── i_vga13h.c ├── i_vga13h.h ├── i_vgapal.c ├── i_vgapal.h ├── i_vgax.c ├── i_vgax.h ├── i_vgay.c ├── i_vgay.h ├── i_vgayh.c ├── i_vgayh.h ├── info.c ├── info.h ├── lineahKN.asm ├── lineahPE.asm ├── linealKN.asm ├── linealPE.asm ├── lineapPE.asm ├── linearh.asm ├── linearh2.asm ├── linearh3.asm ├── linearh4.asm ├── linearh5.asm ├── linearl.asm ├── linearl2.asm ├── linearl3.asm ├── linearl4.asm ├── linearl5.asm ├── linearp.asm ├── linearp2.asm ├── linearp3.asm ├── linearp4.asm ├── linearp5.asm ├── m_bench.c ├── m_bench.h ├── m_menu.c ├── m_menu.h ├── m_misc.c ├── m_misc.h ├── macros.inc ├── makefile ├── math.c ├── math.h ├── mus2mid.c ├── mus2mid.h ├── ns_adbfx.c ├── ns_adbfx.h ├── ns_awe32.c ├── ns_awe32.h ├── ns_cards.h ├── ns_cd.c ├── ns_cd.h ├── ns_cms.c ├── ns_cms.h ├── ns_ctawe.h ├── ns_dma.c ├── ns_dma.h ├── ns_dpmi.c ├── ns_dpmi.h ├── ns_dsney.c ├── ns_dsney.h ├── ns_fxm.c ├── ns_fxm.h ├── ns_gf1.h ├── ns_gus.c ├── ns_gusau.c ├── ns_gusau.h ├── ns_gusdf.h ├── ns_gusmi.c ├── ns_gusmi.h ├── ns_inter.h ├── ns_irq.c ├── ns_irq.h ├── ns_ll.h ├── ns_llm.c ├── ns_llm.h ├── ns_lpt.c ├── ns_lpt.h ├── ns_lptmusic.c ├── ns_lptmusic.h ├── ns_midi.c ├── ns_midi.h ├── ns_midif.h ├── ns_mix.asm ├── ns_mpu401.c ├── ns_mpu401.h ├── ns_muldf.h ├── ns_multi.c ├── ns_multi.h ├── ns_music.c ├── ns_music.h ├── ns_p16df.h ├── ns_pas16.c ├── ns_pas16.h ├── ns_pcfx.c ├── ns_pcfx.h ├── ns_pwm.c ├── ns_pwm.h ├── ns_rs232.c ├── ns_rs232.h ├── ns_sb.c ├── ns_sb.h ├── ns_sbdef.h ├── ns_sbdm.c ├── ns_sbdm.h ├── ns_sbmdf.h ├── ns_sbmid.c ├── ns_sbmid.h ├── ns_sbmus.c ├── ns_sbmus.h ├── ns_scape.c ├── ns_scape.h ├── ns_scdef.h ├── ns_speak.c ├── ns_speak.h ├── ns_std.h ├── ns_tandy.c ├── ns_tandy.h ├── ns_task.c ├── ns_task.h ├── options.h ├── p_ceilng.c ├── p_doors.c ├── p_enemy.c ├── p_floor.c ├── p_inter.c ├── p_inter.h ├── p_lights.c ├── p_local.h ├── p_map.c ├── p_maputl.c ├── p_mobj.c ├── p_mobj.h ├── p_plats.c ├── p_pspr.c ├── p_pspr.h ├── p_saveg.c ├── p_saveg.h ├── p_setup.c ├── p_setup.h ├── p_sight.c ├── p_spec.c ├── p_spec.h ├── p_switch.c ├── p_telept.c ├── p_tick.c ├── p_tick.h ├── p_user.c ├── pawe32.lib ├── pcp.asm ├── planar.asm ├── planar2.asm ├── planar3.asm ├── planar4.asm ├── planar5.asm ├── planar6.asm ├── planarKN.asm ├── planarSX.asm ├── r_bsp.c ├── r_bsp.h ├── r_data.c ├── r_data.h ├── r_defs.h ├── r_draw.c ├── r_draw.h ├── r_local.h ├── r_main.c ├── r_main.h ├── r_plane.c ├── r_plane.h ├── r_segs.c ├── r_segs.h ├── r_state.h ├── r_things.c ├── r_things.h ├── s_sound.c ├── s_sound.h ├── sigma.asm ├── sizeopt.h ├── sounds.c ├── sounds.h ├── st_lib.c ├── st_lib.h ├── st_stuff.c ├── st_stuff.h ├── std_func.h ├── tables.c ├── tables.h ├── v_video.c ├── v_video.h ├── vbe2dh.asm ├── vbe2dh2.asm ├── vbe2dh3.asm ├── vbe2dh4.asm ├── vbe2dh5.asm ├── vbe2dhPE.asm ├── vbe2dl.asm ├── vbe2dl2.asm ├── vbe2dl3.asm ├── vbe2dl4.asm ├── vbe2dl5.asm ├── vbe2dlPE.asm ├── vbe2dp.asm ├── vbe2dp2.asm ├── vbe2dp3.asm ├── vbe2dp4.asm ├── vbe2dp5.asm ├── vbe2dpPE.asm ├── version.h ├── vesa.asm ├── vga13h.asm ├── w_wad.c ├── w_wad.h ├── wi_stuff.c ├── wi_stuff.h ├── z_zone.c └── z_zone.h ├── FDBENCH └── FDBENCH.BAS ├── FDSETUP ├── CONFIG.C ├── CONTROL.C ├── DEFAULT.C ├── DEFAULT.H ├── FDOOM.CFG ├── KEYS.H ├── MAIN.C ├── MAIN.H ├── MENU.C ├── MENU.H ├── MUSIC.C ├── SCGUESS.C ├── SCGUESS.H ├── SCREENS │ ├── ASKPRES.DOG │ ├── ASKPRES.PUP │ ├── CMODEM.DOG │ ├── CMODEM.PUP │ ├── CMSPORT.DOG │ ├── CMSPORT.PUP │ ├── COMPORT.DOG │ ├── COMPORT.PUP │ ├── CONSEL.DOG │ ├── CONSEL.PUP │ ├── CONTROL.DOG │ ├── CONTROL.PUP │ ├── CSERIAL.DOG │ ├── CSERIAL.PUP │ ├── CWARP.DOG │ ├── CWARP.PUP │ ├── ENTRNMBR.DOG │ ├── ENTRNMBR.PUP │ ├── FILES │ ├── FORALL.EXE │ ├── FREQALL.DOG │ ├── FREQALL.PUP │ ├── FREQPCM.DOG │ ├── FREQPCM.PUP │ ├── GUSIRQER.DOG │ ├── GUSIRQER.PUP │ ├── IDCARD.DOG │ ├── IDCARD.PUP │ ├── IDJOYSEL.DOG │ ├── IDJOYSEL.PUP │ ├── IDKEYSEL.DOG │ ├── IDKEYSEL.PUP │ ├── IDMAIN2.DOG │ ├── IDMAIN2.PUP │ ├── IDMOUSEL.DOG │ ├── IDMOUSEL.PUP │ ├── IRQERR.DOG │ ├── IRQERR.PUP │ ├── LDOG.CFG │ ├── LPTPORT.DOG │ ├── LPTPORT.PUP │ ├── MACROS.DOG │ ├── MACROS.PUP │ ├── MAKE.BAT │ ├── MCARD.DOG │ ├── MCARD.PUP │ ├── MIDIDEV.DOG │ ├── MIDIDEV.PUP │ ├── MIDIPORT.DOG │ ├── MIDIPORT.PUP │ ├── MO.EXE │ ├── MODEMCHS.DOG │ ├── MODEMCHS.PUP │ ├── MODSAVE.DOG │ ├── MODSAVE.PUP │ ├── MOUSENTR.DOG │ ├── MOUSENTR.PUP │ ├── MOUSPRES.DOG │ ├── MOUSPRES.PUP │ ├── NETPLAY.DOG │ ├── NETPLAY.PUP │ ├── NETPLAY2.DOG │ ├── NETPLAY2.PUP │ ├── NETSAVE.DOG │ ├── NETSAVE.PUP │ ├── NETSERR.DOG │ ├── NETSERR.PUP │ ├── NETWK2.DOG │ ├── NETWK2.PUP │ ├── NUMDIG.DOG │ ├── NUMDIG.PUP │ ├── PHONELST.DOG │ ├── PHONELST.PUP │ ├── QUITWIN.DOG │ ├── QUITWIN.PUP │ ├── SBDMA.DOG │ ├── SBDMA.PUP │ ├── SBIRQ.DOG │ ├── SBIRQ.PUP │ ├── SBPORT.DOG │ ├── SBPORT.PUP │ ├── SERSAVE.DOG │ ├── SERSAVE.PUP │ ├── SHOW.DOG │ ├── SHOW.PUP │ ├── SOCKERR.DOG │ ├── SOCKERR.PUP │ ├── TITLE.DOG │ └── TITLE.PUP ├── SETUP.C ├── SETUP.CSM ├── SETUP.DSW ├── SETUP.H ├── SETUP.IDE ├── SETUP.PRJ ├── SETUP.~DE └── SFX.C ├── FREEDM1.TCF ├── FREEDM2.TCF ├── LEVELS ├── doom.txt ├── doom1.txt ├── doom2.txt ├── doomu.txt ├── freedm1.txt ├── freedm2.txt ├── plutonia.txt └── tnt.txt ├── MT32GM.MID ├── PLUTONIA.TCF ├── README.md ├── README.txt ├── SCRIPTS ├── 8BitTo6Bit │ ├── LUT_NEW_0x13.raw │ ├── LUT_NEW_0x13_6bit.raw │ ├── LUT_NEW_0x55.raw │ ├── LUT_NEW_0x55_6bit.raw │ ├── LUT_OLD_0x13.raw │ ├── LUT_OLD_0x13_6bit.raw │ ├── LUT_OLD_0x55.raw │ ├── LUT_OLD_0x55_6bit.raw │ └── fastdoom_8bitto6bit.py ├── AnsiFromHell │ ├── build.sh │ └── fastdoom_ansifromhell.py ├── GAMMA │ └── OriginalGammaTable.ods ├── PCMconvert │ ├── convert_doom.sh │ ├── convert_doom2.sh │ ├── convert_plutonia.sh │ └── convert_tnt.sh ├── SC55_ConvertSYX │ ├── fastdoom_sc55img2syx.py │ └── fastdoom_sc55txt2syx.py ├── SuperOptimizer │ ├── COPYING │ ├── ChangeLog │ ├── Makefile │ ├── README │ ├── TODO │ ├── goal.def │ ├── insn.def │ ├── longlong.h │ ├── run_program.def │ ├── superopt.c │ ├── superopt.h │ ├── synth.def │ └── version.h ├── TG300_ConvertSYX │ ├── fastdoom_tg300img2syx.py │ └── fastdoom_tg300txt2syx.py ├── TableOptimizations │ ├── fastdoom_BFG.py │ ├── fastdoom_Mul4Mod10Plus1.py │ ├── fastdoom_Mul6Mod10Plus1.py │ ├── fastdoom_Prnd_minus_Prnd.py │ ├── fastdoom_and1.py │ ├── fastdoom_and15.py │ ├── fastdoom_and3.py │ ├── fastdoom_and3_3is0.py │ ├── fastdoom_and3_mul16.py │ ├── fastdoom_and7.py │ ├── fastdoom_and7_plus1.py │ ├── fastdoom_and7_plus1_mul10.py │ ├── fastdoom_and7_plus1_mul3.py │ ├── fastdoom_gammatable.py │ ├── fastdoom_lessthan10.py │ ├── fastdoom_lessthan3.py │ ├── fastdoom_lessthan40.py │ ├── fastdoom_lessthan5.py │ ├── fastdoom_mod10.py │ ├── fastdoom_mod3.py │ ├── fastdoom_mod3_mrandom.py │ ├── fastdoom_mod5.py │ ├── fastdoom_mod6.py │ ├── fastdoom_morethan200.py │ └── fastdoom_morethan4.py └── TextMode16 │ ├── PLAYPAL.pal │ ├── fastdoom_mode16v.py │ ├── fastdoom_mode16v2.py │ ├── pal1.png │ ├── pal10.png │ ├── pal11.png │ ├── pal12.png │ ├── pal13.png │ ├── pal14.png │ ├── pal2.png │ ├── pal3.png │ ├── pal4.png │ ├── pal5.png │ ├── pal6.png │ ├── pal7.png │ ├── pal8.png │ └── pal9.png ├── TEXT └── PROG.TXT ├── TNT.TCF ├── WAD ├── FONTH.WAD ├── MODE16.WAD ├── MODE4.WAD ├── MODEBW.WAD ├── MODECVBS.WAD └── MODETXT.WAD ├── confDOS.bat ├── disasm.sh ├── docker-compose.yaml ├── dos32a └── BINW │ ├── DOS32A.EXE │ ├── SB.EXE │ ├── SC.EXE │ ├── SS.EXE │ ├── STUB32A.EXE │ ├── STUB32C.EXE │ └── SVER.EXE ├── fdenv.sh ├── package.sh ├── stub.bat ├── stub.sh └── synthgs.sbk /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/.gitignore -------------------------------------------------------------------------------- /BENCH.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/BENCH.BAT -------------------------------------------------------------------------------- /BENCH/ARCH.BNC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/BENCH/ARCH.BNC -------------------------------------------------------------------------------- /BENCH/NORMAL.BNC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/BENCH/NORMAL.BNC -------------------------------------------------------------------------------- /BENCH/PHILS.BNC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/BENCH/PHILS.BNC -------------------------------------------------------------------------------- /BENCH/QUICK.BNC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/BENCH/QUICK.BNC -------------------------------------------------------------------------------- /CHANGELOG.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/CHANGELOG.MD -------------------------------------------------------------------------------- /DATA/ADLIBFX.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/DATA/ADLIBFX.BIN -------------------------------------------------------------------------------- /DATA/CMSATT.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/DATA/CMSATT.BIN -------------------------------------------------------------------------------- /DATA/CMSFM.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/DATA/CMSFM.BIN -------------------------------------------------------------------------------- /DATA/CMSFREQ.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/DATA/CMSFREQ.BIN -------------------------------------------------------------------------------- /DATA/CMSPITCH.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/DATA/CMSPITCH.BIN -------------------------------------------------------------------------------- /DATA/PCSPK.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/DATA/PCSPK.BIN -------------------------------------------------------------------------------- /DATA/SC55.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/DATA/SC55.BIN -------------------------------------------------------------------------------- /DATA/TANDY.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/DATA/TANDY.BIN -------------------------------------------------------------------------------- /DATA/TG300.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/DATA/TG300.BIN -------------------------------------------------------------------------------- /DOOM.TCF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/DOOM.TCF -------------------------------------------------------------------------------- /DOOM1.TCF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/DOOM1.TCF -------------------------------------------------------------------------------- /DOOM2.TCF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/DOOM2.TCF -------------------------------------------------------------------------------- /DOOMU.TCF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/DOOMU.TCF -------------------------------------------------------------------------------- /DOS32A.D32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/DOS32A.D32 -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/Dockerfile -------------------------------------------------------------------------------- /EXE/FDBENCH.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/EXE/FDBENCH.EXE -------------------------------------------------------------------------------- /EXE/FDSETUP.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/EXE/FDSETUP.EXE -------------------------------------------------------------------------------- /FASTDOOM/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/LICENSE -------------------------------------------------------------------------------- /FASTDOOM/Makefile.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/Makefile.gnu -------------------------------------------------------------------------------- /FASTDOOM/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/am_map.c -------------------------------------------------------------------------------- /FASTDOOM/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/am_map.h -------------------------------------------------------------------------------- /FASTDOOM/cga16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/cga16.asm -------------------------------------------------------------------------------- /FASTDOOM/cga4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/cga4.asm -------------------------------------------------------------------------------- /FASTDOOM/cga512.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/cga512.asm -------------------------------------------------------------------------------- /FASTDOOM/cgaafh.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/cgaafh.asm -------------------------------------------------------------------------------- /FASTDOOM/cgabw.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/cgabw.asm -------------------------------------------------------------------------------- /FASTDOOM/cgacvb.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/cgacvb.asm -------------------------------------------------------------------------------- /FASTDOOM/d_englsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/d_englsh.h -------------------------------------------------------------------------------- /FASTDOOM/d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/d_event.h -------------------------------------------------------------------------------- /FASTDOOM/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/d_main.c -------------------------------------------------------------------------------- /FASTDOOM/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/d_main.h -------------------------------------------------------------------------------- /FASTDOOM/d_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/d_net.c -------------------------------------------------------------------------------- /FASTDOOM/d_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/d_net.h -------------------------------------------------------------------------------- /FASTDOOM/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/d_player.h -------------------------------------------------------------------------------- /FASTDOOM/d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/d_think.h -------------------------------------------------------------------------------- /FASTDOOM/d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/d_ticcmd.h -------------------------------------------------------------------------------- /FASTDOOM/dbgcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/dbgcfg.h -------------------------------------------------------------------------------- /FASTDOOM/defs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/defs.inc -------------------------------------------------------------------------------- /FASTDOOM/dmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/dmx.c -------------------------------------------------------------------------------- /FASTDOOM/dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/dmx.h -------------------------------------------------------------------------------- /FASTDOOM/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/doomdata.h -------------------------------------------------------------------------------- /FASTDOOM/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/doomdef.h -------------------------------------------------------------------------------- /FASTDOOM/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/doomstat.h -------------------------------------------------------------------------------- /FASTDOOM/doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/doomtype.h -------------------------------------------------------------------------------- /FASTDOOM/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/dstrings.h -------------------------------------------------------------------------------- /FASTDOOM/dutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/dutils.c -------------------------------------------------------------------------------- /FASTDOOM/dutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/dutils.h -------------------------------------------------------------------------------- /FASTDOOM/ega320.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ega320.asm -------------------------------------------------------------------------------- /FASTDOOM/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/f_finale.c -------------------------------------------------------------------------------- /FASTDOOM/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/f_finale.h -------------------------------------------------------------------------------- /FASTDOOM/f_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/f_wipe.c -------------------------------------------------------------------------------- /FASTDOOM/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/f_wipe.h -------------------------------------------------------------------------------- /FASTDOOM/fastmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/fastmath.h -------------------------------------------------------------------------------- /FASTDOOM/fastmath.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/fastmath.inc -------------------------------------------------------------------------------- /FASTDOOM/fdoom.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/fdoom.lnk -------------------------------------------------------------------------------- /FASTDOOM/fpummx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/fpummx.asm -------------------------------------------------------------------------------- /FASTDOOM/fpummx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/fpummx.h -------------------------------------------------------------------------------- /FASTDOOM/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/g_game.c -------------------------------------------------------------------------------- /FASTDOOM/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/g_game.h -------------------------------------------------------------------------------- /FASTDOOM/gf1_osf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/gf1_osf.lib -------------------------------------------------------------------------------- /FASTDOOM/herc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/herc.asm -------------------------------------------------------------------------------- /FASTDOOM/hu_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/hu_lib.c -------------------------------------------------------------------------------- /FASTDOOM/hu_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/hu_lib.h -------------------------------------------------------------------------------- /FASTDOOM/hu_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/hu_stuff.c -------------------------------------------------------------------------------- /FASTDOOM/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/hu_stuff.h -------------------------------------------------------------------------------- /FASTDOOM/i_cga16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_cga16.c -------------------------------------------------------------------------------- /FASTDOOM/i_cga16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_cga16.h -------------------------------------------------------------------------------- /FASTDOOM/i_cga4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_cga4.c -------------------------------------------------------------------------------- /FASTDOOM/i_cga4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_cga4.h -------------------------------------------------------------------------------- /FASTDOOM/i_cga512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_cga512.c -------------------------------------------------------------------------------- /FASTDOOM/i_cga512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_cga512.h -------------------------------------------------------------------------------- /FASTDOOM/i_cgaafh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_cgaafh.c -------------------------------------------------------------------------------- /FASTDOOM/i_cgaafh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_cgaafh.h -------------------------------------------------------------------------------- /FASTDOOM/i_cgabw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_cgabw.c -------------------------------------------------------------------------------- /FASTDOOM/i_cgabw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_cgabw.h -------------------------------------------------------------------------------- /FASTDOOM/i_cgacvb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_cgacvb.c -------------------------------------------------------------------------------- /FASTDOOM/i_cgacvb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_cgacvb.h -------------------------------------------------------------------------------- /FASTDOOM/i_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_debug.c -------------------------------------------------------------------------------- /FASTDOOM/i_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_debug.h -------------------------------------------------------------------------------- /FASTDOOM/i_ega320.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_ega320.c -------------------------------------------------------------------------------- /FASTDOOM/i_ega320.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_ega320.h -------------------------------------------------------------------------------- /FASTDOOM/i_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_file.c -------------------------------------------------------------------------------- /FASTDOOM/i_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_file.h -------------------------------------------------------------------------------- /FASTDOOM/i_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_gamma.c -------------------------------------------------------------------------------- /FASTDOOM/i_gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_gamma.h -------------------------------------------------------------------------------- /FASTDOOM/i_herc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_herc.c -------------------------------------------------------------------------------- /FASTDOOM/i_herc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_herc.h -------------------------------------------------------------------------------- /FASTDOOM/i_ibm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_ibm.c -------------------------------------------------------------------------------- /FASTDOOM/i_ibm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_ibm.h -------------------------------------------------------------------------------- /FASTDOOM/i_incolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_incolor.c -------------------------------------------------------------------------------- /FASTDOOM/i_incolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_incolor.h -------------------------------------------------------------------------------- /FASTDOOM/i_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_main.c -------------------------------------------------------------------------------- /FASTDOOM/i_mda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_mda.c -------------------------------------------------------------------------------- /FASTDOOM/i_mda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_mda.h -------------------------------------------------------------------------------- /FASTDOOM/i_pcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_pcp.c -------------------------------------------------------------------------------- /FASTDOOM/i_pcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_pcp.h -------------------------------------------------------------------------------- /FASTDOOM/i_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_random.c -------------------------------------------------------------------------------- /FASTDOOM/i_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_random.h -------------------------------------------------------------------------------- /FASTDOOM/i_sigma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_sigma.c -------------------------------------------------------------------------------- /FASTDOOM/i_sigma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_sigma.h -------------------------------------------------------------------------------- /FASTDOOM/i_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_sound.c -------------------------------------------------------------------------------- /FASTDOOM/i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_sound.h -------------------------------------------------------------------------------- /FASTDOOM/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_system.h -------------------------------------------------------------------------------- /FASTDOOM/i_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_text.c -------------------------------------------------------------------------------- /FASTDOOM/i_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_text.h -------------------------------------------------------------------------------- /FASTDOOM/i_vesa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_vesa.c -------------------------------------------------------------------------------- /FASTDOOM/i_vesa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_vesa.h -------------------------------------------------------------------------------- /FASTDOOM/i_vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_vga.c -------------------------------------------------------------------------------- /FASTDOOM/i_vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_vga.h -------------------------------------------------------------------------------- /FASTDOOM/i_vga13h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_vga13h.c -------------------------------------------------------------------------------- /FASTDOOM/i_vga13h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_vga13h.h -------------------------------------------------------------------------------- /FASTDOOM/i_vgapal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_vgapal.c -------------------------------------------------------------------------------- /FASTDOOM/i_vgapal.h: -------------------------------------------------------------------------------- 1 | void VGA_TestFastSetPalette(void); 2 | -------------------------------------------------------------------------------- /FASTDOOM/i_vgax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_vgax.c -------------------------------------------------------------------------------- /FASTDOOM/i_vgax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_vgax.h -------------------------------------------------------------------------------- /FASTDOOM/i_vgay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_vgay.c -------------------------------------------------------------------------------- /FASTDOOM/i_vgay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_vgay.h -------------------------------------------------------------------------------- /FASTDOOM/i_vgayh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_vgayh.c -------------------------------------------------------------------------------- /FASTDOOM/i_vgayh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/i_vgayh.h -------------------------------------------------------------------------------- /FASTDOOM/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/info.c -------------------------------------------------------------------------------- /FASTDOOM/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/info.h -------------------------------------------------------------------------------- /FASTDOOM/lineahKN.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/lineahKN.asm -------------------------------------------------------------------------------- /FASTDOOM/lineahPE.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/lineahPE.asm -------------------------------------------------------------------------------- /FASTDOOM/linealKN.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linealKN.asm -------------------------------------------------------------------------------- /FASTDOOM/linealPE.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linealPE.asm -------------------------------------------------------------------------------- /FASTDOOM/lineapPE.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/lineapPE.asm -------------------------------------------------------------------------------- /FASTDOOM/linearh.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linearh.asm -------------------------------------------------------------------------------- /FASTDOOM/linearh2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linearh2.asm -------------------------------------------------------------------------------- /FASTDOOM/linearh3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linearh3.asm -------------------------------------------------------------------------------- /FASTDOOM/linearh4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linearh4.asm -------------------------------------------------------------------------------- /FASTDOOM/linearh5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linearh5.asm -------------------------------------------------------------------------------- /FASTDOOM/linearl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linearl.asm -------------------------------------------------------------------------------- /FASTDOOM/linearl2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linearl2.asm -------------------------------------------------------------------------------- /FASTDOOM/linearl3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linearl3.asm -------------------------------------------------------------------------------- /FASTDOOM/linearl4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linearl4.asm -------------------------------------------------------------------------------- /FASTDOOM/linearl5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linearl5.asm -------------------------------------------------------------------------------- /FASTDOOM/linearp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linearp.asm -------------------------------------------------------------------------------- /FASTDOOM/linearp2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linearp2.asm -------------------------------------------------------------------------------- /FASTDOOM/linearp3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linearp3.asm -------------------------------------------------------------------------------- /FASTDOOM/linearp4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linearp4.asm -------------------------------------------------------------------------------- /FASTDOOM/linearp5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/linearp5.asm -------------------------------------------------------------------------------- /FASTDOOM/m_bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/m_bench.c -------------------------------------------------------------------------------- /FASTDOOM/m_bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/m_bench.h -------------------------------------------------------------------------------- /FASTDOOM/m_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/m_menu.c -------------------------------------------------------------------------------- /FASTDOOM/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/m_menu.h -------------------------------------------------------------------------------- /FASTDOOM/m_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/m_misc.c -------------------------------------------------------------------------------- /FASTDOOM/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/m_misc.h -------------------------------------------------------------------------------- /FASTDOOM/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/macros.inc -------------------------------------------------------------------------------- /FASTDOOM/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/makefile -------------------------------------------------------------------------------- /FASTDOOM/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/math.c -------------------------------------------------------------------------------- /FASTDOOM/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/math.h -------------------------------------------------------------------------------- /FASTDOOM/mus2mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/mus2mid.c -------------------------------------------------------------------------------- /FASTDOOM/mus2mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/mus2mid.h -------------------------------------------------------------------------------- /FASTDOOM/ns_adbfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_adbfx.c -------------------------------------------------------------------------------- /FASTDOOM/ns_adbfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_adbfx.h -------------------------------------------------------------------------------- /FASTDOOM/ns_awe32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_awe32.c -------------------------------------------------------------------------------- /FASTDOOM/ns_awe32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_awe32.h -------------------------------------------------------------------------------- /FASTDOOM/ns_cards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_cards.h -------------------------------------------------------------------------------- /FASTDOOM/ns_cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_cd.c -------------------------------------------------------------------------------- /FASTDOOM/ns_cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_cd.h -------------------------------------------------------------------------------- /FASTDOOM/ns_cms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_cms.c -------------------------------------------------------------------------------- /FASTDOOM/ns_cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_cms.h -------------------------------------------------------------------------------- /FASTDOOM/ns_ctawe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_ctawe.h -------------------------------------------------------------------------------- /FASTDOOM/ns_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_dma.c -------------------------------------------------------------------------------- /FASTDOOM/ns_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_dma.h -------------------------------------------------------------------------------- /FASTDOOM/ns_dpmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_dpmi.c -------------------------------------------------------------------------------- /FASTDOOM/ns_dpmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_dpmi.h -------------------------------------------------------------------------------- /FASTDOOM/ns_dsney.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_dsney.c -------------------------------------------------------------------------------- /FASTDOOM/ns_dsney.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_dsney.h -------------------------------------------------------------------------------- /FASTDOOM/ns_fxm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_fxm.c -------------------------------------------------------------------------------- /FASTDOOM/ns_fxm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_fxm.h -------------------------------------------------------------------------------- /FASTDOOM/ns_gf1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_gf1.h -------------------------------------------------------------------------------- /FASTDOOM/ns_gus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_gus.c -------------------------------------------------------------------------------- /FASTDOOM/ns_gusau.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_gusau.c -------------------------------------------------------------------------------- /FASTDOOM/ns_gusau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_gusau.h -------------------------------------------------------------------------------- /FASTDOOM/ns_gusdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_gusdf.h -------------------------------------------------------------------------------- /FASTDOOM/ns_gusmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_gusmi.c -------------------------------------------------------------------------------- /FASTDOOM/ns_gusmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_gusmi.h -------------------------------------------------------------------------------- /FASTDOOM/ns_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_inter.h -------------------------------------------------------------------------------- /FASTDOOM/ns_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_irq.c -------------------------------------------------------------------------------- /FASTDOOM/ns_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_irq.h -------------------------------------------------------------------------------- /FASTDOOM/ns_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_ll.h -------------------------------------------------------------------------------- /FASTDOOM/ns_llm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_llm.c -------------------------------------------------------------------------------- /FASTDOOM/ns_llm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_llm.h -------------------------------------------------------------------------------- /FASTDOOM/ns_lpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_lpt.c -------------------------------------------------------------------------------- /FASTDOOM/ns_lpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_lpt.h -------------------------------------------------------------------------------- /FASTDOOM/ns_lptmusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_lptmusic.c -------------------------------------------------------------------------------- /FASTDOOM/ns_lptmusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_lptmusic.h -------------------------------------------------------------------------------- /FASTDOOM/ns_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_midi.c -------------------------------------------------------------------------------- /FASTDOOM/ns_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_midi.h -------------------------------------------------------------------------------- /FASTDOOM/ns_midif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_midif.h -------------------------------------------------------------------------------- /FASTDOOM/ns_mix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_mix.asm -------------------------------------------------------------------------------- /FASTDOOM/ns_mpu401.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_mpu401.c -------------------------------------------------------------------------------- /FASTDOOM/ns_mpu401.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_mpu401.h -------------------------------------------------------------------------------- /FASTDOOM/ns_muldf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_muldf.h -------------------------------------------------------------------------------- /FASTDOOM/ns_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_multi.c -------------------------------------------------------------------------------- /FASTDOOM/ns_multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_multi.h -------------------------------------------------------------------------------- /FASTDOOM/ns_music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_music.c -------------------------------------------------------------------------------- /FASTDOOM/ns_music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_music.h -------------------------------------------------------------------------------- /FASTDOOM/ns_p16df.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_p16df.h -------------------------------------------------------------------------------- /FASTDOOM/ns_pas16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_pas16.c -------------------------------------------------------------------------------- /FASTDOOM/ns_pas16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_pas16.h -------------------------------------------------------------------------------- /FASTDOOM/ns_pcfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_pcfx.c -------------------------------------------------------------------------------- /FASTDOOM/ns_pcfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_pcfx.h -------------------------------------------------------------------------------- /FASTDOOM/ns_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_pwm.c -------------------------------------------------------------------------------- /FASTDOOM/ns_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_pwm.h -------------------------------------------------------------------------------- /FASTDOOM/ns_rs232.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_rs232.c -------------------------------------------------------------------------------- /FASTDOOM/ns_rs232.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_rs232.h -------------------------------------------------------------------------------- /FASTDOOM/ns_sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_sb.c -------------------------------------------------------------------------------- /FASTDOOM/ns_sb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_sb.h -------------------------------------------------------------------------------- /FASTDOOM/ns_sbdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_sbdef.h -------------------------------------------------------------------------------- /FASTDOOM/ns_sbdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_sbdm.c -------------------------------------------------------------------------------- /FASTDOOM/ns_sbdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_sbdm.h -------------------------------------------------------------------------------- /FASTDOOM/ns_sbmdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_sbmdf.h -------------------------------------------------------------------------------- /FASTDOOM/ns_sbmid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_sbmid.c -------------------------------------------------------------------------------- /FASTDOOM/ns_sbmid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_sbmid.h -------------------------------------------------------------------------------- /FASTDOOM/ns_sbmus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_sbmus.c -------------------------------------------------------------------------------- /FASTDOOM/ns_sbmus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_sbmus.h -------------------------------------------------------------------------------- /FASTDOOM/ns_scape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_scape.c -------------------------------------------------------------------------------- /FASTDOOM/ns_scape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_scape.h -------------------------------------------------------------------------------- /FASTDOOM/ns_scdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_scdef.h -------------------------------------------------------------------------------- /FASTDOOM/ns_speak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_speak.c -------------------------------------------------------------------------------- /FASTDOOM/ns_speak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_speak.h -------------------------------------------------------------------------------- /FASTDOOM/ns_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_std.h -------------------------------------------------------------------------------- /FASTDOOM/ns_tandy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_tandy.c -------------------------------------------------------------------------------- /FASTDOOM/ns_tandy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_tandy.h -------------------------------------------------------------------------------- /FASTDOOM/ns_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_task.c -------------------------------------------------------------------------------- /FASTDOOM/ns_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/ns_task.h -------------------------------------------------------------------------------- /FASTDOOM/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/options.h -------------------------------------------------------------------------------- /FASTDOOM/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_ceilng.c -------------------------------------------------------------------------------- /FASTDOOM/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_doors.c -------------------------------------------------------------------------------- /FASTDOOM/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_enemy.c -------------------------------------------------------------------------------- /FASTDOOM/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_floor.c -------------------------------------------------------------------------------- /FASTDOOM/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_inter.c -------------------------------------------------------------------------------- /FASTDOOM/p_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_inter.h -------------------------------------------------------------------------------- /FASTDOOM/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_lights.c -------------------------------------------------------------------------------- /FASTDOOM/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_local.h -------------------------------------------------------------------------------- /FASTDOOM/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_map.c -------------------------------------------------------------------------------- /FASTDOOM/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_maputl.c -------------------------------------------------------------------------------- /FASTDOOM/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_mobj.c -------------------------------------------------------------------------------- /FASTDOOM/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_mobj.h -------------------------------------------------------------------------------- /FASTDOOM/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_plats.c -------------------------------------------------------------------------------- /FASTDOOM/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_pspr.c -------------------------------------------------------------------------------- /FASTDOOM/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_pspr.h -------------------------------------------------------------------------------- /FASTDOOM/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_saveg.c -------------------------------------------------------------------------------- /FASTDOOM/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_saveg.h -------------------------------------------------------------------------------- /FASTDOOM/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_setup.c -------------------------------------------------------------------------------- /FASTDOOM/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_setup.h -------------------------------------------------------------------------------- /FASTDOOM/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_sight.c -------------------------------------------------------------------------------- /FASTDOOM/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_spec.c -------------------------------------------------------------------------------- /FASTDOOM/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_spec.h -------------------------------------------------------------------------------- /FASTDOOM/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_switch.c -------------------------------------------------------------------------------- /FASTDOOM/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_telept.c -------------------------------------------------------------------------------- /FASTDOOM/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_tick.c -------------------------------------------------------------------------------- /FASTDOOM/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_tick.h -------------------------------------------------------------------------------- /FASTDOOM/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/p_user.c -------------------------------------------------------------------------------- /FASTDOOM/pawe32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/pawe32.lib -------------------------------------------------------------------------------- /FASTDOOM/pcp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/pcp.asm -------------------------------------------------------------------------------- /FASTDOOM/planar.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/planar.asm -------------------------------------------------------------------------------- /FASTDOOM/planar2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/planar2.asm -------------------------------------------------------------------------------- /FASTDOOM/planar3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/planar3.asm -------------------------------------------------------------------------------- /FASTDOOM/planar4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/planar4.asm -------------------------------------------------------------------------------- /FASTDOOM/planar5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/planar5.asm -------------------------------------------------------------------------------- /FASTDOOM/planar6.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/planar6.asm -------------------------------------------------------------------------------- /FASTDOOM/planarKN.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/planarKN.asm -------------------------------------------------------------------------------- /FASTDOOM/planarSX.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/planarSX.asm -------------------------------------------------------------------------------- /FASTDOOM/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_bsp.c -------------------------------------------------------------------------------- /FASTDOOM/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_bsp.h -------------------------------------------------------------------------------- /FASTDOOM/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_data.c -------------------------------------------------------------------------------- /FASTDOOM/r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_data.h -------------------------------------------------------------------------------- /FASTDOOM/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_defs.h -------------------------------------------------------------------------------- /FASTDOOM/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_draw.c -------------------------------------------------------------------------------- /FASTDOOM/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_draw.h -------------------------------------------------------------------------------- /FASTDOOM/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_local.h -------------------------------------------------------------------------------- /FASTDOOM/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_main.c -------------------------------------------------------------------------------- /FASTDOOM/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_main.h -------------------------------------------------------------------------------- /FASTDOOM/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_plane.c -------------------------------------------------------------------------------- /FASTDOOM/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_plane.h -------------------------------------------------------------------------------- /FASTDOOM/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_segs.c -------------------------------------------------------------------------------- /FASTDOOM/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_segs.h -------------------------------------------------------------------------------- /FASTDOOM/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_state.h -------------------------------------------------------------------------------- /FASTDOOM/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_things.c -------------------------------------------------------------------------------- /FASTDOOM/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/r_things.h -------------------------------------------------------------------------------- /FASTDOOM/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/s_sound.c -------------------------------------------------------------------------------- /FASTDOOM/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/s_sound.h -------------------------------------------------------------------------------- /FASTDOOM/sigma.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/sigma.asm -------------------------------------------------------------------------------- /FASTDOOM/sizeopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/sizeopt.h -------------------------------------------------------------------------------- /FASTDOOM/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/sounds.c -------------------------------------------------------------------------------- /FASTDOOM/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/sounds.h -------------------------------------------------------------------------------- /FASTDOOM/st_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/st_lib.c -------------------------------------------------------------------------------- /FASTDOOM/st_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/st_lib.h -------------------------------------------------------------------------------- /FASTDOOM/st_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/st_stuff.c -------------------------------------------------------------------------------- /FASTDOOM/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/st_stuff.h -------------------------------------------------------------------------------- /FASTDOOM/std_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/std_func.h -------------------------------------------------------------------------------- /FASTDOOM/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/tables.c -------------------------------------------------------------------------------- /FASTDOOM/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/tables.h -------------------------------------------------------------------------------- /FASTDOOM/v_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/v_video.c -------------------------------------------------------------------------------- /FASTDOOM/v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/v_video.h -------------------------------------------------------------------------------- /FASTDOOM/vbe2dh.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dh.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dh2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dh2.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dh3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dh3.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dh4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dh4.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dh5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dh5.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dhPE.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dhPE.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dl.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dl2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dl2.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dl3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dl3.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dl4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dl4.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dl5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dl5.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dlPE.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dlPE.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dp.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dp2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dp2.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dp3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dp3.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dp4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dp4.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dp5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dp5.asm -------------------------------------------------------------------------------- /FASTDOOM/vbe2dpPE.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vbe2dpPE.asm -------------------------------------------------------------------------------- /FASTDOOM/version.h: -------------------------------------------------------------------------------- 1 | #define FDOOMVERSION "1.1.7" 2 | -------------------------------------------------------------------------------- /FASTDOOM/vesa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vesa.asm -------------------------------------------------------------------------------- /FASTDOOM/vga13h.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/vga13h.asm -------------------------------------------------------------------------------- /FASTDOOM/w_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/w_wad.c -------------------------------------------------------------------------------- /FASTDOOM/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/w_wad.h -------------------------------------------------------------------------------- /FASTDOOM/wi_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/wi_stuff.c -------------------------------------------------------------------------------- /FASTDOOM/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/wi_stuff.h -------------------------------------------------------------------------------- /FASTDOOM/z_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/z_zone.c -------------------------------------------------------------------------------- /FASTDOOM/z_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FASTDOOM/z_zone.h -------------------------------------------------------------------------------- /FDBENCH/FDBENCH.BAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDBENCH/FDBENCH.BAS -------------------------------------------------------------------------------- /FDSETUP/CONFIG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/CONFIG.C -------------------------------------------------------------------------------- /FDSETUP/CONTROL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/CONTROL.C -------------------------------------------------------------------------------- /FDSETUP/DEFAULT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/DEFAULT.C -------------------------------------------------------------------------------- /FDSETUP/DEFAULT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/DEFAULT.H -------------------------------------------------------------------------------- /FDSETUP/FDOOM.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/FDOOM.CFG -------------------------------------------------------------------------------- /FDSETUP/KEYS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/KEYS.H -------------------------------------------------------------------------------- /FDSETUP/MAIN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/MAIN.C -------------------------------------------------------------------------------- /FDSETUP/MAIN.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/MAIN.H -------------------------------------------------------------------------------- /FDSETUP/MENU.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/MENU.C -------------------------------------------------------------------------------- /FDSETUP/MENU.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/MENU.H -------------------------------------------------------------------------------- /FDSETUP/MUSIC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/MUSIC.C -------------------------------------------------------------------------------- /FDSETUP/SCGUESS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCGUESS.C -------------------------------------------------------------------------------- /FDSETUP/SCGUESS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCGUESS.H -------------------------------------------------------------------------------- /FDSETUP/SCREENS/ASKPRES.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/ASKPRES.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/ASKPRES.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/ASKPRES.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/CMODEM.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/CMODEM.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/CMODEM.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/CMODEM.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/CMSPORT.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/CMSPORT.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/CMSPORT.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/CMSPORT.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/COMPORT.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/COMPORT.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/COMPORT.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/COMPORT.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/CONSEL.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/CONSEL.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/CONSEL.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/CONSEL.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/CONTROL.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/CONTROL.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/CONTROL.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/CONTROL.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/CSERIAL.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/CSERIAL.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/CSERIAL.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/CSERIAL.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/CWARP.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/CWARP.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/CWARP.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/CWARP.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/ENTRNMBR.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/ENTRNMBR.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/ENTRNMBR.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/ENTRNMBR.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/FILES -------------------------------------------------------------------------------- /FDSETUP/SCREENS/FORALL.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/FORALL.EXE -------------------------------------------------------------------------------- /FDSETUP/SCREENS/FREQALL.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/FREQALL.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/FREQALL.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/FREQALL.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/FREQPCM.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/FREQPCM.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/FREQPCM.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/FREQPCM.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/GUSIRQER.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/GUSIRQER.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/GUSIRQER.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/GUSIRQER.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/IDCARD.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/IDCARD.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/IDCARD.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/IDCARD.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/IDJOYSEL.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/IDJOYSEL.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/IDJOYSEL.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/IDJOYSEL.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/IDKEYSEL.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/IDKEYSEL.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/IDKEYSEL.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/IDKEYSEL.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/IDMAIN2.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/IDMAIN2.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/IDMAIN2.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/IDMAIN2.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/IDMOUSEL.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/IDMOUSEL.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/IDMOUSEL.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/IDMOUSEL.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/IRQERR.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/IRQERR.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/IRQERR.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/IRQERR.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/LDOG.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/LDOG.CFG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/LPTPORT.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/LPTPORT.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/LPTPORT.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/LPTPORT.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MACROS.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MACROS.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MACROS.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MACROS.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MAKE.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MAKE.BAT -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MCARD.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MCARD.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MCARD.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MCARD.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MIDIDEV.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MIDIDEV.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MIDIDEV.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MIDIDEV.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MIDIPORT.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MIDIPORT.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MIDIPORT.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MIDIPORT.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MO.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MO.EXE -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MODEMCHS.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MODEMCHS.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MODEMCHS.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MODEMCHS.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MODSAVE.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MODSAVE.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MODSAVE.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MODSAVE.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MOUSENTR.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MOUSENTR.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MOUSENTR.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MOUSENTR.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MOUSPRES.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MOUSPRES.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/MOUSPRES.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/MOUSPRES.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/NETPLAY.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/NETPLAY.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/NETPLAY.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/NETPLAY.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/NETPLAY2.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/NETPLAY2.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/NETPLAY2.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/NETPLAY2.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/NETSAVE.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/NETSAVE.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/NETSAVE.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/NETSAVE.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/NETSERR.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/NETSERR.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/NETSERR.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/NETSERR.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/NETWK2.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/NETWK2.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/NETWK2.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/NETWK2.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/NUMDIG.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/NUMDIG.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/NUMDIG.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/NUMDIG.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/PHONELST.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/PHONELST.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/PHONELST.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/PHONELST.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/QUITWIN.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/QUITWIN.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/QUITWIN.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/QUITWIN.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/SBDMA.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/SBDMA.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/SBDMA.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/SBDMA.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/SBIRQ.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/SBIRQ.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/SBIRQ.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/SBIRQ.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/SBPORT.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/SBPORT.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/SBPORT.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/SBPORT.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/SERSAVE.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/SERSAVE.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/SERSAVE.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/SERSAVE.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/SHOW.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/SHOW.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/SHOW.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/SHOW.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/SOCKERR.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/SOCKERR.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/SOCKERR.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/SOCKERR.PUP -------------------------------------------------------------------------------- /FDSETUP/SCREENS/TITLE.DOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/TITLE.DOG -------------------------------------------------------------------------------- /FDSETUP/SCREENS/TITLE.PUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SCREENS/TITLE.PUP -------------------------------------------------------------------------------- /FDSETUP/SETUP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SETUP.C -------------------------------------------------------------------------------- /FDSETUP/SETUP.CSM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SETUP.CSM -------------------------------------------------------------------------------- /FDSETUP/SETUP.DSW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SETUP.DSW -------------------------------------------------------------------------------- /FDSETUP/SETUP.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SETUP.H -------------------------------------------------------------------------------- /FDSETUP/SETUP.IDE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SETUP.IDE -------------------------------------------------------------------------------- /FDSETUP/SETUP.PRJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SETUP.PRJ -------------------------------------------------------------------------------- /FDSETUP/SETUP.~DE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SETUP.~DE -------------------------------------------------------------------------------- /FDSETUP/SFX.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FDSETUP/SFX.C -------------------------------------------------------------------------------- /FREEDM1.TCF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FREEDM1.TCF -------------------------------------------------------------------------------- /FREEDM2.TCF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/FREEDM2.TCF -------------------------------------------------------------------------------- /LEVELS/doom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/LEVELS/doom.txt -------------------------------------------------------------------------------- /LEVELS/doom1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/LEVELS/doom1.txt -------------------------------------------------------------------------------- /LEVELS/doom2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/LEVELS/doom2.txt -------------------------------------------------------------------------------- /LEVELS/doomu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/LEVELS/doomu.txt -------------------------------------------------------------------------------- /LEVELS/freedm1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/LEVELS/freedm1.txt -------------------------------------------------------------------------------- /LEVELS/freedm2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/LEVELS/freedm2.txt -------------------------------------------------------------------------------- /LEVELS/plutonia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/LEVELS/plutonia.txt -------------------------------------------------------------------------------- /LEVELS/tnt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/LEVELS/tnt.txt -------------------------------------------------------------------------------- /MT32GM.MID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/MT32GM.MID -------------------------------------------------------------------------------- /PLUTONIA.TCF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/PLUTONIA.TCF -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/README.txt -------------------------------------------------------------------------------- /SCRIPTS/8BitTo6Bit/LUT_NEW_0x13.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/8BitTo6Bit/LUT_NEW_0x13.raw -------------------------------------------------------------------------------- /SCRIPTS/8BitTo6Bit/LUT_NEW_0x13_6bit.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/8BitTo6Bit/LUT_NEW_0x13_6bit.raw -------------------------------------------------------------------------------- /SCRIPTS/8BitTo6Bit/LUT_NEW_0x55.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/8BitTo6Bit/LUT_NEW_0x55.raw -------------------------------------------------------------------------------- /SCRIPTS/8BitTo6Bit/LUT_NEW_0x55_6bit.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/8BitTo6Bit/LUT_NEW_0x55_6bit.raw -------------------------------------------------------------------------------- /SCRIPTS/8BitTo6Bit/LUT_OLD_0x13.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/8BitTo6Bit/LUT_OLD_0x13.raw -------------------------------------------------------------------------------- /SCRIPTS/8BitTo6Bit/LUT_OLD_0x13_6bit.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/8BitTo6Bit/LUT_OLD_0x13_6bit.raw -------------------------------------------------------------------------------- /SCRIPTS/8BitTo6Bit/LUT_OLD_0x55.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/8BitTo6Bit/LUT_OLD_0x55.raw -------------------------------------------------------------------------------- /SCRIPTS/8BitTo6Bit/LUT_OLD_0x55_6bit.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/8BitTo6Bit/LUT_OLD_0x55_6bit.raw -------------------------------------------------------------------------------- /SCRIPTS/8BitTo6Bit/fastdoom_8bitto6bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/8BitTo6Bit/fastdoom_8bitto6bit.py -------------------------------------------------------------------------------- /SCRIPTS/AnsiFromHell/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/AnsiFromHell/build.sh -------------------------------------------------------------------------------- /SCRIPTS/AnsiFromHell/fastdoom_ansifromhell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/AnsiFromHell/fastdoom_ansifromhell.py -------------------------------------------------------------------------------- /SCRIPTS/GAMMA/OriginalGammaTable.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/GAMMA/OriginalGammaTable.ods -------------------------------------------------------------------------------- /SCRIPTS/PCMconvert/convert_doom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/PCMconvert/convert_doom.sh -------------------------------------------------------------------------------- /SCRIPTS/PCMconvert/convert_doom2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/PCMconvert/convert_doom2.sh -------------------------------------------------------------------------------- /SCRIPTS/PCMconvert/convert_plutonia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/PCMconvert/convert_plutonia.sh -------------------------------------------------------------------------------- /SCRIPTS/PCMconvert/convert_tnt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/PCMconvert/convert_tnt.sh -------------------------------------------------------------------------------- /SCRIPTS/SC55_ConvertSYX/fastdoom_sc55img2syx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/SC55_ConvertSYX/fastdoom_sc55img2syx.py -------------------------------------------------------------------------------- /SCRIPTS/SC55_ConvertSYX/fastdoom_sc55txt2syx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/SC55_ConvertSYX/fastdoom_sc55txt2syx.py -------------------------------------------------------------------------------- /SCRIPTS/SuperOptimizer/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/SuperOptimizer/COPYING -------------------------------------------------------------------------------- /SCRIPTS/SuperOptimizer/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/SuperOptimizer/ChangeLog -------------------------------------------------------------------------------- /SCRIPTS/SuperOptimizer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/SuperOptimizer/Makefile -------------------------------------------------------------------------------- /SCRIPTS/SuperOptimizer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/SuperOptimizer/README -------------------------------------------------------------------------------- /SCRIPTS/SuperOptimizer/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/SuperOptimizer/TODO -------------------------------------------------------------------------------- /SCRIPTS/SuperOptimizer/goal.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/SuperOptimizer/goal.def -------------------------------------------------------------------------------- /SCRIPTS/SuperOptimizer/insn.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/SuperOptimizer/insn.def -------------------------------------------------------------------------------- /SCRIPTS/SuperOptimizer/longlong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/SuperOptimizer/longlong.h -------------------------------------------------------------------------------- /SCRIPTS/SuperOptimizer/run_program.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/SuperOptimizer/run_program.def -------------------------------------------------------------------------------- /SCRIPTS/SuperOptimizer/superopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/SuperOptimizer/superopt.c -------------------------------------------------------------------------------- /SCRIPTS/SuperOptimizer/superopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/SuperOptimizer/superopt.h -------------------------------------------------------------------------------- /SCRIPTS/SuperOptimizer/synth.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/SuperOptimizer/synth.def -------------------------------------------------------------------------------- /SCRIPTS/SuperOptimizer/version.h: -------------------------------------------------------------------------------- 1 | char *version_string = "2.5"; 2 | -------------------------------------------------------------------------------- /SCRIPTS/TG300_ConvertSYX/fastdoom_tg300img2syx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TG300_ConvertSYX/fastdoom_tg300img2syx.py -------------------------------------------------------------------------------- /SCRIPTS/TG300_ConvertSYX/fastdoom_tg300txt2syx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TG300_ConvertSYX/fastdoom_tg300txt2syx.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_BFG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_BFG.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_Mul4Mod10Plus1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_Mul4Mod10Plus1.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_Mul6Mod10Plus1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_Mul6Mod10Plus1.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_Prnd_minus_Prnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_Prnd_minus_Prnd.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_and1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_and1.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_and15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_and15.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_and3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_and3.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_and3_3is0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_and3_3is0.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_and3_mul16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_and3_mul16.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_and7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_and7.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_and7_plus1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_and7_plus1.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_and7_plus1_mul10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_and7_plus1_mul10.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_and7_plus1_mul3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_and7_plus1_mul3.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_gammatable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_gammatable.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_lessthan10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_lessthan10.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_lessthan3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_lessthan3.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_lessthan40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_lessthan40.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_lessthan5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_lessthan5.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_mod10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_mod10.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_mod3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_mod3.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_mod3_mrandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_mod3_mrandom.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_mod5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_mod5.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_mod6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_mod6.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_morethan200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_morethan200.py -------------------------------------------------------------------------------- /SCRIPTS/TableOptimizations/fastdoom_morethan4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TableOptimizations/fastdoom_morethan4.py -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/PLAYPAL.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/PLAYPAL.pal -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/fastdoom_mode16v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/fastdoom_mode16v.py -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/fastdoom_mode16v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/fastdoom_mode16v2.py -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/pal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/pal1.png -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/pal10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/pal10.png -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/pal11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/pal11.png -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/pal12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/pal12.png -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/pal13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/pal13.png -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/pal14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/pal14.png -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/pal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/pal2.png -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/pal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/pal3.png -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/pal4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/pal4.png -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/pal5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/pal5.png -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/pal6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/pal6.png -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/pal7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/pal7.png -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/pal8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/pal8.png -------------------------------------------------------------------------------- /SCRIPTS/TextMode16/pal9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/SCRIPTS/TextMode16/pal9.png -------------------------------------------------------------------------------- /TEXT/PROG.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/TEXT/PROG.TXT -------------------------------------------------------------------------------- /TNT.TCF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/TNT.TCF -------------------------------------------------------------------------------- /WAD/FONTH.WAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/WAD/FONTH.WAD -------------------------------------------------------------------------------- /WAD/MODE16.WAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/WAD/MODE16.WAD -------------------------------------------------------------------------------- /WAD/MODE4.WAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/WAD/MODE4.WAD -------------------------------------------------------------------------------- /WAD/MODEBW.WAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/WAD/MODEBW.WAD -------------------------------------------------------------------------------- /WAD/MODECVBS.WAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/WAD/MODECVBS.WAD -------------------------------------------------------------------------------- /WAD/MODETXT.WAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/WAD/MODETXT.WAD -------------------------------------------------------------------------------- /confDOS.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/confDOS.bat -------------------------------------------------------------------------------- /disasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/disasm.sh -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /dos32a/BINW/DOS32A.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/dos32a/BINW/DOS32A.EXE -------------------------------------------------------------------------------- /dos32a/BINW/SB.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/dos32a/BINW/SB.EXE -------------------------------------------------------------------------------- /dos32a/BINW/SC.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/dos32a/BINW/SC.EXE -------------------------------------------------------------------------------- /dos32a/BINW/SS.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/dos32a/BINW/SS.EXE -------------------------------------------------------------------------------- /dos32a/BINW/STUB32A.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/dos32a/BINW/STUB32A.EXE -------------------------------------------------------------------------------- /dos32a/BINW/STUB32C.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/dos32a/BINW/STUB32C.EXE -------------------------------------------------------------------------------- /dos32a/BINW/SVER.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/dos32a/BINW/SVER.EXE -------------------------------------------------------------------------------- /fdenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/fdenv.sh -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/package.sh -------------------------------------------------------------------------------- /stub.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/stub.bat -------------------------------------------------------------------------------- /stub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/stub.sh -------------------------------------------------------------------------------- /synthgs.sbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viti95/FastDoom/HEAD/synthgs.sbk --------------------------------------------------------------------------------