├── .gitattributes ├── .gitignore ├── LICENSE ├── README.TXT ├── README.md ├── a_pcfx.c ├── a_pcfx.h ├── a_taskmn.c ├── a_taskmn.h ├── am_map.c ├── am_map.h ├── bcga.sh ├── bcgabw.sh ├── bdj32.bat ├── bega.sh ├── begah.sh ├── begam.sh ├── bmda.sh ├── bmode13h.sh ├── bmode13l.sh ├── bmode13m.sh ├── bmodey.sh ├── bmodeyh.sh ├── bmodeyl.sh ├── bmodeym.sh ├── bt40x25.sh ├── bt80x25.sh ├── bt80x43.sh ├── bt80x50.sh ├── btxtmode.sh ├── bwc16.bat ├── bwc32.bat ├── compiler.h ├── config.h ├── d_englsh.h ├── d_event.h ├── d_items.c ├── d_items.h ├── d_main.c ├── d_main.h ├── d_player.h ├── d_think.h ├── d_ticcmd.h ├── doomdata.h ├── doomdef.h ├── doomtype.h ├── f_finale.c ├── f_finale.h ├── f_lib.c ├── f_lib.h ├── f_libt.c ├── f_wipe.h ├── g_game.c ├── g_game.h ├── globdata.h ├── hu_stuff.c ├── hu_stuff.h ├── hu_text.c ├── i_audio.c ├── i_main.c ├── i_sound.h ├── i_system.c ├── i_system.h ├── i_vcga.c ├── i_vcgaa.asm ├── i_vcgabw.c ├── i_vega.c ├── i_vegaa.asm ├── i_video.h ├── i_vmda.c ├── i_vmdaa.asm ├── i_vmodey.c ├── i_vmodya.asm ├── i_vtext.c ├── i_vtext.h ├── i_vtexta.asm ├── i_vv13ha.asm ├── i_vv13la.asm ├── i_vv13ma.asm ├── i_vvga13.c ├── info.c ├── info.h ├── m_cheat.c ├── m_cheat.h ├── m_fixed.asm ├── m_fixed.h ├── m_menu.c ├── m_menu.h ├── m_random.c ├── m_random.h ├── m_swap.h ├── m_text.c ├── makefile.w16 ├── makefile.w32 ├── p_doors.c ├── p_enemy.c ├── p_enemy.h ├── p_enemy2.c ├── p_floor.c ├── p_inter.c ├── p_inter.h ├── p_lights.c ├── p_map.c ├── p_map.h ├── p_maputl.c ├── p_maputl.h ├── p_mobj.c ├── p_mobj.h ├── p_plats.c ├── p_pspr.c ├── p_pspr.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 ├── p_user.h ├── r_data.c ├── r_data.h ├── r_defs.h ├── r_draw.c ├── r_main.h ├── r_plane.c ├── r_sky.c ├── r_things.c ├── r_things.h ├── readme_imgs ├── doomcga.png ├── doomcgabw.png ├── doomegah.png ├── doomegam.png ├── doomt40x25.png ├── doomt80x25.png ├── doomt80x25m.png ├── doomt80x43.png ├── doomt80x50.png ├── doomvgah.png ├── doomvgal.png └── doomvgam.png ├── s_sound.c ├── s_sound.h ├── setenvdj.bat ├── setenvwc.bat ├── sounds.c ├── sounds.h ├── st_pal.c ├── st_stuff.c ├── st_stuff.h ├── st_text.c ├── tables.c ├── tables.h ├── v_video.c ├── v_video.h ├── w_wad.c ├── w_wad.h ├── wc16doom.lnk ├── wc32doom.lnk ├── wi_lib.c ├── wi_lib.h ├── wi_libt.c ├── wi_stuff.c ├── wi_stuff.h ├── z_bmallo.c ├── z_bmallo.h ├── z_xms.asm ├── z_zone.c └── z_zone.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/LICENSE -------------------------------------------------------------------------------- /README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/README.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/README.md -------------------------------------------------------------------------------- /a_pcfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/a_pcfx.c -------------------------------------------------------------------------------- /a_pcfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/a_pcfx.h -------------------------------------------------------------------------------- /a_taskmn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/a_taskmn.c -------------------------------------------------------------------------------- /a_taskmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/a_taskmn.h -------------------------------------------------------------------------------- /am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/am_map.c -------------------------------------------------------------------------------- /am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/am_map.h -------------------------------------------------------------------------------- /bcga.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/bcga.sh -------------------------------------------------------------------------------- /bcgabw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/bcgabw.sh -------------------------------------------------------------------------------- /bdj32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/bdj32.bat -------------------------------------------------------------------------------- /bega.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/bega.sh -------------------------------------------------------------------------------- /begah.sh: -------------------------------------------------------------------------------- 1 | ./bega.sh 60 $1 $2 2 | -------------------------------------------------------------------------------- /begam.sh: -------------------------------------------------------------------------------- 1 | ./bega.sh 30 $1 $2 2 | -------------------------------------------------------------------------------- /bmda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/bmda.sh -------------------------------------------------------------------------------- /bmode13h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/bmode13h.sh -------------------------------------------------------------------------------- /bmode13l.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/bmode13l.sh -------------------------------------------------------------------------------- /bmode13m.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/bmode13m.sh -------------------------------------------------------------------------------- /bmodey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/bmodey.sh -------------------------------------------------------------------------------- /bmodeyh.sh: -------------------------------------------------------------------------------- 1 | ./bmodey.sh 240 $1 $2 2 | -------------------------------------------------------------------------------- /bmodeyl.sh: -------------------------------------------------------------------------------- 1 | ./bmodey.sh 60 $1 $2 2 | -------------------------------------------------------------------------------- /bmodeym.sh: -------------------------------------------------------------------------------- 1 | ./bmodey.sh 120 $1 $2 2 | -------------------------------------------------------------------------------- /bt40x25.sh: -------------------------------------------------------------------------------- 1 | ./btxtmode.sh 40 25 $1 $2 2 | -------------------------------------------------------------------------------- /bt80x25.sh: -------------------------------------------------------------------------------- 1 | ./btxtmode.sh 80 25 $1 $2 2 | -------------------------------------------------------------------------------- /bt80x43.sh: -------------------------------------------------------------------------------- 1 | ./btxtmode.sh 80 43 $1 $2 2 | -------------------------------------------------------------------------------- /bt80x50.sh: -------------------------------------------------------------------------------- 1 | ./btxtmode.sh 80 50 $1 $2 2 | -------------------------------------------------------------------------------- /btxtmode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/btxtmode.sh -------------------------------------------------------------------------------- /bwc16.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/bwc16.bat -------------------------------------------------------------------------------- /bwc32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/bwc32.bat -------------------------------------------------------------------------------- /compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/compiler.h -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/config.h -------------------------------------------------------------------------------- /d_englsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/d_englsh.h -------------------------------------------------------------------------------- /d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/d_event.h -------------------------------------------------------------------------------- /d_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/d_items.c -------------------------------------------------------------------------------- /d_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/d_items.h -------------------------------------------------------------------------------- /d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/d_main.c -------------------------------------------------------------------------------- /d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/d_main.h -------------------------------------------------------------------------------- /d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/d_player.h -------------------------------------------------------------------------------- /d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/d_think.h -------------------------------------------------------------------------------- /d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/d_ticcmd.h -------------------------------------------------------------------------------- /doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/doomdata.h -------------------------------------------------------------------------------- /doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/doomdef.h -------------------------------------------------------------------------------- /doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/doomtype.h -------------------------------------------------------------------------------- /f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/f_finale.c -------------------------------------------------------------------------------- /f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/f_finale.h -------------------------------------------------------------------------------- /f_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/f_lib.c -------------------------------------------------------------------------------- /f_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/f_lib.h -------------------------------------------------------------------------------- /f_libt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/f_libt.c -------------------------------------------------------------------------------- /f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/f_wipe.h -------------------------------------------------------------------------------- /g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/g_game.c -------------------------------------------------------------------------------- /g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/g_game.h -------------------------------------------------------------------------------- /globdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/globdata.h -------------------------------------------------------------------------------- /hu_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/hu_stuff.c -------------------------------------------------------------------------------- /hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/hu_stuff.h -------------------------------------------------------------------------------- /hu_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/hu_text.c -------------------------------------------------------------------------------- /i_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_audio.c -------------------------------------------------------------------------------- /i_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_main.c -------------------------------------------------------------------------------- /i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_sound.h -------------------------------------------------------------------------------- /i_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_system.c -------------------------------------------------------------------------------- /i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_system.h -------------------------------------------------------------------------------- /i_vcga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vcga.c -------------------------------------------------------------------------------- /i_vcgaa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vcgaa.asm -------------------------------------------------------------------------------- /i_vcgabw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vcgabw.c -------------------------------------------------------------------------------- /i_vega.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vega.c -------------------------------------------------------------------------------- /i_vegaa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vegaa.asm -------------------------------------------------------------------------------- /i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_video.h -------------------------------------------------------------------------------- /i_vmda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vmda.c -------------------------------------------------------------------------------- /i_vmdaa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vmdaa.asm -------------------------------------------------------------------------------- /i_vmodey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vmodey.c -------------------------------------------------------------------------------- /i_vmodya.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vmodya.asm -------------------------------------------------------------------------------- /i_vtext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vtext.c -------------------------------------------------------------------------------- /i_vtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vtext.h -------------------------------------------------------------------------------- /i_vtexta.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vtexta.asm -------------------------------------------------------------------------------- /i_vv13ha.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vv13ha.asm -------------------------------------------------------------------------------- /i_vv13la.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vv13la.asm -------------------------------------------------------------------------------- /i_vv13ma.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vv13ma.asm -------------------------------------------------------------------------------- /i_vvga13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/i_vvga13.c -------------------------------------------------------------------------------- /info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/info.c -------------------------------------------------------------------------------- /info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/info.h -------------------------------------------------------------------------------- /m_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/m_cheat.c -------------------------------------------------------------------------------- /m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/m_cheat.h -------------------------------------------------------------------------------- /m_fixed.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/m_fixed.asm -------------------------------------------------------------------------------- /m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/m_fixed.h -------------------------------------------------------------------------------- /m_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/m_menu.c -------------------------------------------------------------------------------- /m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/m_menu.h -------------------------------------------------------------------------------- /m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/m_random.c -------------------------------------------------------------------------------- /m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/m_random.h -------------------------------------------------------------------------------- /m_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/m_swap.h -------------------------------------------------------------------------------- /m_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/m_text.c -------------------------------------------------------------------------------- /makefile.w16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/makefile.w16 -------------------------------------------------------------------------------- /makefile.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/makefile.w32 -------------------------------------------------------------------------------- /p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_doors.c -------------------------------------------------------------------------------- /p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_enemy.c -------------------------------------------------------------------------------- /p_enemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_enemy.h -------------------------------------------------------------------------------- /p_enemy2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_enemy2.c -------------------------------------------------------------------------------- /p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_floor.c -------------------------------------------------------------------------------- /p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_inter.c -------------------------------------------------------------------------------- /p_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_inter.h -------------------------------------------------------------------------------- /p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_lights.c -------------------------------------------------------------------------------- /p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_map.c -------------------------------------------------------------------------------- /p_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_map.h -------------------------------------------------------------------------------- /p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_maputl.c -------------------------------------------------------------------------------- /p_maputl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_maputl.h -------------------------------------------------------------------------------- /p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_mobj.c -------------------------------------------------------------------------------- /p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_mobj.h -------------------------------------------------------------------------------- /p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_plats.c -------------------------------------------------------------------------------- /p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_pspr.c -------------------------------------------------------------------------------- /p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_pspr.h -------------------------------------------------------------------------------- /p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_setup.c -------------------------------------------------------------------------------- /p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_setup.h -------------------------------------------------------------------------------- /p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_sight.c -------------------------------------------------------------------------------- /p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_spec.c -------------------------------------------------------------------------------- /p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_spec.h -------------------------------------------------------------------------------- /p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_switch.c -------------------------------------------------------------------------------- /p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_telept.c -------------------------------------------------------------------------------- /p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_tick.c -------------------------------------------------------------------------------- /p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_tick.h -------------------------------------------------------------------------------- /p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_user.c -------------------------------------------------------------------------------- /p_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/p_user.h -------------------------------------------------------------------------------- /r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/r_data.c -------------------------------------------------------------------------------- /r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/r_data.h -------------------------------------------------------------------------------- /r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/r_defs.h -------------------------------------------------------------------------------- /r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/r_draw.c -------------------------------------------------------------------------------- /r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/r_main.h -------------------------------------------------------------------------------- /r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/r_plane.c -------------------------------------------------------------------------------- /r_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/r_sky.c -------------------------------------------------------------------------------- /r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/r_things.c -------------------------------------------------------------------------------- /r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/r_things.h -------------------------------------------------------------------------------- /readme_imgs/doomcga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/readme_imgs/doomcga.png -------------------------------------------------------------------------------- /readme_imgs/doomcgabw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/readme_imgs/doomcgabw.png -------------------------------------------------------------------------------- /readme_imgs/doomegah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/readme_imgs/doomegah.png -------------------------------------------------------------------------------- /readme_imgs/doomegam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/readme_imgs/doomegam.png -------------------------------------------------------------------------------- /readme_imgs/doomt40x25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/readme_imgs/doomt40x25.png -------------------------------------------------------------------------------- /readme_imgs/doomt80x25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/readme_imgs/doomt80x25.png -------------------------------------------------------------------------------- /readme_imgs/doomt80x25m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/readme_imgs/doomt80x25m.png -------------------------------------------------------------------------------- /readme_imgs/doomt80x43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/readme_imgs/doomt80x43.png -------------------------------------------------------------------------------- /readme_imgs/doomt80x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/readme_imgs/doomt80x50.png -------------------------------------------------------------------------------- /readme_imgs/doomvgah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/readme_imgs/doomvgah.png -------------------------------------------------------------------------------- /readme_imgs/doomvgal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/readme_imgs/doomvgal.png -------------------------------------------------------------------------------- /readme_imgs/doomvgam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/readme_imgs/doomvgam.png -------------------------------------------------------------------------------- /s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/s_sound.c -------------------------------------------------------------------------------- /s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/s_sound.h -------------------------------------------------------------------------------- /setenvdj.bat: -------------------------------------------------------------------------------- 1 | C:\Progs\djgpp\setenv.bat 2 | -------------------------------------------------------------------------------- /setenvwc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/setenvwc.bat -------------------------------------------------------------------------------- /sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/sounds.c -------------------------------------------------------------------------------- /sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/sounds.h -------------------------------------------------------------------------------- /st_pal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/st_pal.c -------------------------------------------------------------------------------- /st_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/st_stuff.c -------------------------------------------------------------------------------- /st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/st_stuff.h -------------------------------------------------------------------------------- /st_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/st_text.c -------------------------------------------------------------------------------- /tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/tables.c -------------------------------------------------------------------------------- /tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/tables.h -------------------------------------------------------------------------------- /v_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/v_video.c -------------------------------------------------------------------------------- /v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/v_video.h -------------------------------------------------------------------------------- /w_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/w_wad.c -------------------------------------------------------------------------------- /w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/w_wad.h -------------------------------------------------------------------------------- /wc16doom.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/wc16doom.lnk -------------------------------------------------------------------------------- /wc32doom.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/wc32doom.lnk -------------------------------------------------------------------------------- /wi_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/wi_lib.c -------------------------------------------------------------------------------- /wi_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/wi_lib.h -------------------------------------------------------------------------------- /wi_libt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/wi_libt.c -------------------------------------------------------------------------------- /wi_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/wi_stuff.c -------------------------------------------------------------------------------- /wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/wi_stuff.h -------------------------------------------------------------------------------- /z_bmallo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/z_bmallo.c -------------------------------------------------------------------------------- /z_bmallo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/z_bmallo.h -------------------------------------------------------------------------------- /z_xms.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/z_xms.asm -------------------------------------------------------------------------------- /z_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/z_zone.c -------------------------------------------------------------------------------- /z_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenkelS/Doom8088/HEAD/z_zone.h --------------------------------------------------------------------------------