├── LICENSE.md ├── README.md └── src ├── .gitattributes ├── ChangeLog ├── DrawFunctions.c ├── DrawFunctions.h ├── FILES ├── FILES2 ├── Makefile ├── README.asm ├── README.b ├── README.book ├── README.gl ├── README.sound ├── TODO ├── XDriver.c ├── am_map.c ├── am_map.h ├── d_englsh.h ├── d_event.h ├── d_french.h ├── d_items.c ├── d_items.h ├── d_main.c ├── d_main.h ├── d_net.c ├── d_net.h ├── d_player.h ├── d_textur.h ├── d_think.h ├── d_ticcmd.h ├── doomdata.h ├── doomdef.c ├── doomdef.h ├── doomstat.c ├── doomstat.h ├── doomtype.h ├── dstrings.c ├── dstrings.h ├── f_finale.c ├── f_finale.h ├── f_wipe.c ├── f_wipe.h ├── g_game.c ├── g_game.h ├── hu_lib.c ├── hu_lib.h ├── hu_stuff.c ├── hu_stuff.h ├── i_main.c ├── i_net.c ├── i_net.h ├── i_sound.c ├── i_sound.h ├── i_system.c ├── i_system.h ├── i_video.c ├── i_video.h ├── i_video_console.c ├── info.c ├── info.h ├── m_argv.c ├── m_argv.h ├── m_bbox.c ├── m_bbox.h ├── m_cheat.c ├── m_cheat.h ├── m_fixed.c ├── m_fixed.h ├── m_menu.c ├── m_menu.h ├── m_misc.c ├── m_misc.h ├── m_random.c ├── m_random.h ├── m_swap.c ├── m_swap.h ├── os_generic.c ├── os_generic.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 ├── 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_sky.c ├── r_sky.h ├── r_state.h ├── r_things.c ├── r_things.h ├── s_sound.c ├── s_sound.h ├── sounds.c ├── sounds.h ├── st_lib.c ├── st_lib.h ├── st_stuff.c ├── st_stuff.h ├── stubs.c ├── stubs.h ├── support ├── LICENSE.txt ├── augment_sprites.txt ├── doom1.wad ├── rawwad.c ├── rawwad.h ├── shrinkwad.c ├── stripchoice-E1M1ONLY.txt ├── stripchoice.txt ├── stripchoicebegin.txt └── wadder.c ├── tables.c ├── tables.h ├── v_video.c ├── v_video.h ├── w_wad.c ├── w_wad.h ├── wi_stuff.c ├── wi_stuff.h ├── z_zone.c └── z_zone.h /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/README.md -------------------------------------------------------------------------------- /src/.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/ChangeLog -------------------------------------------------------------------------------- /src/DrawFunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/DrawFunctions.c -------------------------------------------------------------------------------- /src/DrawFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/DrawFunctions.h -------------------------------------------------------------------------------- /src/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/FILES -------------------------------------------------------------------------------- /src/FILES2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/FILES2 -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/README.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/README.asm -------------------------------------------------------------------------------- /src/README.b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/README.b -------------------------------------------------------------------------------- /src/README.book: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/README.book -------------------------------------------------------------------------------- /src/README.gl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/README.gl -------------------------------------------------------------------------------- /src/README.sound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/README.sound -------------------------------------------------------------------------------- /src/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/TODO -------------------------------------------------------------------------------- /src/XDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/XDriver.c -------------------------------------------------------------------------------- /src/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/am_map.c -------------------------------------------------------------------------------- /src/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/am_map.h -------------------------------------------------------------------------------- /src/d_englsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/d_englsh.h -------------------------------------------------------------------------------- /src/d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/d_event.h -------------------------------------------------------------------------------- /src/d_french.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/d_french.h -------------------------------------------------------------------------------- /src/d_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/d_items.c -------------------------------------------------------------------------------- /src/d_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/d_items.h -------------------------------------------------------------------------------- /src/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/d_main.c -------------------------------------------------------------------------------- /src/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/d_main.h -------------------------------------------------------------------------------- /src/d_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/d_net.c -------------------------------------------------------------------------------- /src/d_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/d_net.h -------------------------------------------------------------------------------- /src/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/d_player.h -------------------------------------------------------------------------------- /src/d_textur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/d_textur.h -------------------------------------------------------------------------------- /src/d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/d_think.h -------------------------------------------------------------------------------- /src/d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/d_ticcmd.h -------------------------------------------------------------------------------- /src/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/doomdata.h -------------------------------------------------------------------------------- /src/doomdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/doomdef.c -------------------------------------------------------------------------------- /src/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/doomdef.h -------------------------------------------------------------------------------- /src/doomstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/doomstat.c -------------------------------------------------------------------------------- /src/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/doomstat.h -------------------------------------------------------------------------------- /src/doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/doomtype.h -------------------------------------------------------------------------------- /src/dstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/dstrings.c -------------------------------------------------------------------------------- /src/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/dstrings.h -------------------------------------------------------------------------------- /src/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/f_finale.c -------------------------------------------------------------------------------- /src/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/f_finale.h -------------------------------------------------------------------------------- /src/f_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/f_wipe.c -------------------------------------------------------------------------------- /src/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/f_wipe.h -------------------------------------------------------------------------------- /src/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/g_game.c -------------------------------------------------------------------------------- /src/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/g_game.h -------------------------------------------------------------------------------- /src/hu_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/hu_lib.c -------------------------------------------------------------------------------- /src/hu_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/hu_lib.h -------------------------------------------------------------------------------- /src/hu_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/hu_stuff.c -------------------------------------------------------------------------------- /src/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/hu_stuff.h -------------------------------------------------------------------------------- /src/i_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/i_main.c -------------------------------------------------------------------------------- /src/i_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/i_net.c -------------------------------------------------------------------------------- /src/i_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/i_net.h -------------------------------------------------------------------------------- /src/i_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/i_sound.c -------------------------------------------------------------------------------- /src/i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/i_sound.h -------------------------------------------------------------------------------- /src/i_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/i_system.c -------------------------------------------------------------------------------- /src/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/i_system.h -------------------------------------------------------------------------------- /src/i_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/i_video.c -------------------------------------------------------------------------------- /src/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/i_video.h -------------------------------------------------------------------------------- /src/i_video_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/i_video_console.c -------------------------------------------------------------------------------- /src/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/info.c -------------------------------------------------------------------------------- /src/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/info.h -------------------------------------------------------------------------------- /src/m_argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_argv.c -------------------------------------------------------------------------------- /src/m_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_argv.h -------------------------------------------------------------------------------- /src/m_bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_bbox.c -------------------------------------------------------------------------------- /src/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_bbox.h -------------------------------------------------------------------------------- /src/m_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_cheat.c -------------------------------------------------------------------------------- /src/m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_cheat.h -------------------------------------------------------------------------------- /src/m_fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_fixed.c -------------------------------------------------------------------------------- /src/m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_fixed.h -------------------------------------------------------------------------------- /src/m_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_menu.c -------------------------------------------------------------------------------- /src/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_menu.h -------------------------------------------------------------------------------- /src/m_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_misc.c -------------------------------------------------------------------------------- /src/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_misc.h -------------------------------------------------------------------------------- /src/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_random.c -------------------------------------------------------------------------------- /src/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_random.h -------------------------------------------------------------------------------- /src/m_swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_swap.c -------------------------------------------------------------------------------- /src/m_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/m_swap.h -------------------------------------------------------------------------------- /src/os_generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/os_generic.c -------------------------------------------------------------------------------- /src/os_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/os_generic.h -------------------------------------------------------------------------------- /src/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_ceilng.c -------------------------------------------------------------------------------- /src/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_doors.c -------------------------------------------------------------------------------- /src/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_enemy.c -------------------------------------------------------------------------------- /src/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_floor.c -------------------------------------------------------------------------------- /src/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_inter.c -------------------------------------------------------------------------------- /src/p_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_inter.h -------------------------------------------------------------------------------- /src/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_lights.c -------------------------------------------------------------------------------- /src/p_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_local.h -------------------------------------------------------------------------------- /src/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_map.c -------------------------------------------------------------------------------- /src/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_maputl.c -------------------------------------------------------------------------------- /src/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_mobj.c -------------------------------------------------------------------------------- /src/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_mobj.h -------------------------------------------------------------------------------- /src/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_plats.c -------------------------------------------------------------------------------- /src/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_pspr.c -------------------------------------------------------------------------------- /src/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_pspr.h -------------------------------------------------------------------------------- /src/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_saveg.c -------------------------------------------------------------------------------- /src/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_saveg.h -------------------------------------------------------------------------------- /src/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_setup.c -------------------------------------------------------------------------------- /src/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_setup.h -------------------------------------------------------------------------------- /src/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_sight.c -------------------------------------------------------------------------------- /src/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_spec.c -------------------------------------------------------------------------------- /src/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_spec.h -------------------------------------------------------------------------------- /src/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_switch.c -------------------------------------------------------------------------------- /src/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_telept.c -------------------------------------------------------------------------------- /src/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_tick.c -------------------------------------------------------------------------------- /src/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_tick.h -------------------------------------------------------------------------------- /src/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/p_user.c -------------------------------------------------------------------------------- /src/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_bsp.c -------------------------------------------------------------------------------- /src/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_bsp.h -------------------------------------------------------------------------------- /src/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_data.c -------------------------------------------------------------------------------- /src/r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_data.h -------------------------------------------------------------------------------- /src/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_defs.h -------------------------------------------------------------------------------- /src/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_draw.c -------------------------------------------------------------------------------- /src/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_draw.h -------------------------------------------------------------------------------- /src/r_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_local.h -------------------------------------------------------------------------------- /src/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_main.c -------------------------------------------------------------------------------- /src/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_main.h -------------------------------------------------------------------------------- /src/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_plane.c -------------------------------------------------------------------------------- /src/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_plane.h -------------------------------------------------------------------------------- /src/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_segs.c -------------------------------------------------------------------------------- /src/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_segs.h -------------------------------------------------------------------------------- /src/r_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_sky.c -------------------------------------------------------------------------------- /src/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_sky.h -------------------------------------------------------------------------------- /src/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_state.h -------------------------------------------------------------------------------- /src/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_things.c -------------------------------------------------------------------------------- /src/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/r_things.h -------------------------------------------------------------------------------- /src/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/s_sound.c -------------------------------------------------------------------------------- /src/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/s_sound.h -------------------------------------------------------------------------------- /src/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/sounds.c -------------------------------------------------------------------------------- /src/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/sounds.h -------------------------------------------------------------------------------- /src/st_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/st_lib.c -------------------------------------------------------------------------------- /src/st_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/st_lib.h -------------------------------------------------------------------------------- /src/st_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/st_stuff.c -------------------------------------------------------------------------------- /src/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/st_stuff.h -------------------------------------------------------------------------------- /src/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/stubs.c -------------------------------------------------------------------------------- /src/stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/stubs.h -------------------------------------------------------------------------------- /src/support/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/support/LICENSE.txt -------------------------------------------------------------------------------- /src/support/augment_sprites.txt: -------------------------------------------------------------------------------- 1 | ADD_SPRITE 2 3 PISG 2 | 3 | -------------------------------------------------------------------------------- /src/support/doom1.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/support/doom1.wad -------------------------------------------------------------------------------- /src/support/rawwad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/support/rawwad.c -------------------------------------------------------------------------------- /src/support/rawwad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/support/rawwad.h -------------------------------------------------------------------------------- /src/support/shrinkwad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/support/shrinkwad.c -------------------------------------------------------------------------------- /src/support/stripchoice-E1M1ONLY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/support/stripchoice-E1M1ONLY.txt -------------------------------------------------------------------------------- /src/support/stripchoice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/support/stripchoice.txt -------------------------------------------------------------------------------- /src/support/stripchoicebegin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/support/stripchoicebegin.txt -------------------------------------------------------------------------------- /src/support/wadder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/support/wadder.c -------------------------------------------------------------------------------- /src/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/tables.c -------------------------------------------------------------------------------- /src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/tables.h -------------------------------------------------------------------------------- /src/v_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/v_video.c -------------------------------------------------------------------------------- /src/v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/v_video.h -------------------------------------------------------------------------------- /src/w_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/w_wad.c -------------------------------------------------------------------------------- /src/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/w_wad.h -------------------------------------------------------------------------------- /src/wi_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/wi_stuff.c -------------------------------------------------------------------------------- /src/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/wi_stuff.h -------------------------------------------------------------------------------- /src/z_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/z_zone.c -------------------------------------------------------------------------------- /src/z_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/embeddedDOOM/HEAD/src/z_zone.h --------------------------------------------------------------------------------