├── .gitignore ├── Makefile ├── components ├── prboom-esp32-compat │ ├── Kconfig.projbuild │ ├── Makefile │ ├── component.mk │ ├── gamepad.c │ ├── i_main.c │ ├── i_network.c │ ├── i_sound.c │ ├── i_system.c │ ├── i_video.c │ ├── include │ │ ├── gamepad.h │ │ ├── psxcontroller.h │ │ └── spi_lcd.h │ ├── psxcontroller.c │ └── spi_lcd.c ├── prboom-wad-tables │ ├── GAMMATBL.c │ ├── GAMMATBL.dat │ ├── SINETABL.c │ ├── SINETABL.dat │ ├── TANGTABL.c │ ├── TANGTABL.dat │ ├── TANTOANG.c │ ├── TANTOANG.dat │ ├── component.mk │ └── include │ │ ├── GAMMATBL.h │ │ ├── SINETABL.h │ │ ├── TANGTABL.h │ │ └── TANTOANG.h └── prboom │ ├── AUTHORS │ ├── COPYING │ ├── Makefile │ ├── am_map.c │ ├── component.mk │ ├── d_client.c │ ├── d_deh.c │ ├── d_items.c │ ├── d_main.c │ ├── doomdef.c │ ├── doomstat.c │ ├── dstrings.c │ ├── f_finale.c │ ├── f_wipe.c │ ├── g_game.c │ ├── gl_main.c │ ├── gl_texture.c │ ├── hu_lib.c │ ├── hu_stuff.c │ ├── include │ ├── am_map.h │ ├── config.h │ ├── d_deh.h │ ├── d_englsh.h │ ├── d_event.h │ ├── d_items.h │ ├── d_main.h │ ├── d_net.h │ ├── d_player.h │ ├── d_think.h │ ├── d_ticcmd.h │ ├── doomdata.h │ ├── doomdef.h │ ├── doomstat.h │ ├── doomtype.h │ ├── dstrings.h │ ├── f_finale.h │ ├── f_wipe.h │ ├── g_game.h │ ├── gl_intern.h │ ├── gl_struct.h │ ├── hu_lib.h │ ├── hu_stuff.h │ ├── i_joy.h │ ├── i_main.h │ ├── i_network.h │ ├── i_sound.h │ ├── i_system.h │ ├── i_video.h │ ├── info.h │ ├── lprintf.h │ ├── m_argv.h │ ├── m_bbox.h │ ├── m_cheat.h │ ├── m_fixed.h │ ├── m_menu.h │ ├── m_misc.h │ ├── m_random.h │ ├── m_swap.h │ ├── md5.h │ ├── mmus2mid.h │ ├── p_checksum.h │ ├── p_enemy.h │ ├── p_inter.h │ ├── p_map.h │ ├── p_maputl.h │ ├── p_mobj.h │ ├── p_pspr.h │ ├── p_saveg.h │ ├── p_setup.h │ ├── p_spec.h │ ├── p_tick.h │ ├── p_user.h │ ├── protocol.h │ ├── r_bsp.h │ ├── r_data.h │ ├── r_defs.h │ ├── r_demo.h │ ├── r_draw.h │ ├── r_filter.h │ ├── r_fps.h │ ├── r_main.h │ ├── r_patch.h │ ├── r_plane.h │ ├── r_segs.h │ ├── r_sky.h │ ├── r_state.h │ ├── r_things.h │ ├── s_sound.h │ ├── sounds.h │ ├── st_lib.h │ ├── st_stuff.h │ ├── tables.h │ ├── v_video.h │ ├── version.h │ ├── w_wad.h │ ├── wi_stuff.h │ ├── z_bmalloc.h │ └── z_zone.h │ ├── info.c │ ├── lprintf.c │ ├── m_argv.c │ ├── m_bbox.c │ ├── m_cheat.c │ ├── m_menu.c │ ├── m_misc.c │ ├── m_random.c │ ├── md5.c │ ├── mmus2mid.c │ ├── native │ ├── Makefile │ ├── i_joy.c │ ├── i_main.c │ ├── i_network.c │ ├── i_sound.c │ ├── i_system.c │ ├── i_video.c │ └── include │ │ └── rom │ │ └── ets_sys.h │ ├── p_ceilng.c │ ├── p_checksum.c │ ├── p_doors.c │ ├── p_enemy.c │ ├── p_floor.c │ ├── p_genlin.c │ ├── p_inter.c │ ├── p_lights.c │ ├── p_map.c │ ├── p_maputl.c │ ├── p_mobj.c │ ├── p_plats.c │ ├── p_pspr.c │ ├── p_saveg.c │ ├── p_setup.c │ ├── p_sight.c │ ├── p_spec.c │ ├── p_switch.c │ ├── p_telept.c │ ├── p_tick.c │ ├── p_user.c │ ├── r_bsp.c │ ├── r_data.c │ ├── r_demo.c │ ├── r_draw.c │ ├── r_drawcolpipeline.inl │ ├── r_drawcolumn.inl │ ├── r_drawflush.inl │ ├── r_drawspan.inl │ ├── r_filter.c │ ├── r_fps.c │ ├── r_main.c │ ├── r_patch.c │ ├── r_plane.c │ ├── r_segs.c │ ├── r_sky.c │ ├── r_things.c │ ├── s_sound.c │ ├── sounds.c │ ├── st_lib.c │ ├── st_stuff.c │ ├── tables.c │ ├── v_video.c │ ├── version.c │ ├── w_memcache.c.disabled │ ├── w_mmap.c │ ├── w_wad.c │ ├── wi_stuff.c │ ├── z_bmalloc.c │ └── z_zone.c ├── doom1-cut.wad ├── flashwad.sh ├── main ├── Makefile ├── app_main.c └── component.mk ├── partitions.csv ├── readme.rst ├── sdkconfig ├── tile.png └── tile.raw /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | sdkconfig.old 3 | *.o 4 | components/prboom/native/doom 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/Makefile -------------------------------------------------------------------------------- /components/prboom-esp32-compat/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-esp32-compat/Kconfig.projbuild -------------------------------------------------------------------------------- /components/prboom-esp32-compat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-esp32-compat/Makefile -------------------------------------------------------------------------------- /components/prboom-esp32-compat/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-esp32-compat/component.mk -------------------------------------------------------------------------------- /components/prboom-esp32-compat/gamepad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-esp32-compat/gamepad.c -------------------------------------------------------------------------------- /components/prboom-esp32-compat/i_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-esp32-compat/i_main.c -------------------------------------------------------------------------------- /components/prboom-esp32-compat/i_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-esp32-compat/i_network.c -------------------------------------------------------------------------------- /components/prboom-esp32-compat/i_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-esp32-compat/i_sound.c -------------------------------------------------------------------------------- /components/prboom-esp32-compat/i_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-esp32-compat/i_system.c -------------------------------------------------------------------------------- /components/prboom-esp32-compat/i_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-esp32-compat/i_video.c -------------------------------------------------------------------------------- /components/prboom-esp32-compat/include/gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-esp32-compat/include/gamepad.h -------------------------------------------------------------------------------- /components/prboom-esp32-compat/include/psxcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-esp32-compat/include/psxcontroller.h -------------------------------------------------------------------------------- /components/prboom-esp32-compat/include/spi_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-esp32-compat/include/spi_lcd.h -------------------------------------------------------------------------------- /components/prboom-esp32-compat/psxcontroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-esp32-compat/psxcontroller.c -------------------------------------------------------------------------------- /components/prboom-esp32-compat/spi_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-esp32-compat/spi_lcd.c -------------------------------------------------------------------------------- /components/prboom-wad-tables/GAMMATBL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-wad-tables/GAMMATBL.c -------------------------------------------------------------------------------- /components/prboom-wad-tables/GAMMATBL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-wad-tables/GAMMATBL.dat -------------------------------------------------------------------------------- /components/prboom-wad-tables/SINETABL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-wad-tables/SINETABL.c -------------------------------------------------------------------------------- /components/prboom-wad-tables/SINETABL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-wad-tables/SINETABL.dat -------------------------------------------------------------------------------- /components/prboom-wad-tables/TANGTABL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-wad-tables/TANGTABL.c -------------------------------------------------------------------------------- /components/prboom-wad-tables/TANGTABL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-wad-tables/TANGTABL.dat -------------------------------------------------------------------------------- /components/prboom-wad-tables/TANTOANG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-wad-tables/TANTOANG.c -------------------------------------------------------------------------------- /components/prboom-wad-tables/TANTOANG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-wad-tables/TANTOANG.dat -------------------------------------------------------------------------------- /components/prboom-wad-tables/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-wad-tables/component.mk -------------------------------------------------------------------------------- /components/prboom-wad-tables/include/GAMMATBL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-wad-tables/include/GAMMATBL.h -------------------------------------------------------------------------------- /components/prboom-wad-tables/include/SINETABL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-wad-tables/include/SINETABL.h -------------------------------------------------------------------------------- /components/prboom-wad-tables/include/TANGTABL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-wad-tables/include/TANGTABL.h -------------------------------------------------------------------------------- /components/prboom-wad-tables/include/TANTOANG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom-wad-tables/include/TANTOANG.h -------------------------------------------------------------------------------- /components/prboom/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/AUTHORS -------------------------------------------------------------------------------- /components/prboom/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/COPYING -------------------------------------------------------------------------------- /components/prboom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/Makefile -------------------------------------------------------------------------------- /components/prboom/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/am_map.c -------------------------------------------------------------------------------- /components/prboom/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/component.mk -------------------------------------------------------------------------------- /components/prboom/d_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/d_client.c -------------------------------------------------------------------------------- /components/prboom/d_deh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/d_deh.c -------------------------------------------------------------------------------- /components/prboom/d_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/d_items.c -------------------------------------------------------------------------------- /components/prboom/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/d_main.c -------------------------------------------------------------------------------- /components/prboom/doomdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/doomdef.c -------------------------------------------------------------------------------- /components/prboom/doomstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/doomstat.c -------------------------------------------------------------------------------- /components/prboom/dstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/dstrings.c -------------------------------------------------------------------------------- /components/prboom/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/f_finale.c -------------------------------------------------------------------------------- /components/prboom/f_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/f_wipe.c -------------------------------------------------------------------------------- /components/prboom/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/g_game.c -------------------------------------------------------------------------------- /components/prboom/gl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/gl_main.c -------------------------------------------------------------------------------- /components/prboom/gl_texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/gl_texture.c -------------------------------------------------------------------------------- /components/prboom/hu_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/hu_lib.c -------------------------------------------------------------------------------- /components/prboom/hu_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/hu_stuff.c -------------------------------------------------------------------------------- /components/prboom/include/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/am_map.h -------------------------------------------------------------------------------- /components/prboom/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/config.h -------------------------------------------------------------------------------- /components/prboom/include/d_deh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/d_deh.h -------------------------------------------------------------------------------- /components/prboom/include/d_englsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/d_englsh.h -------------------------------------------------------------------------------- /components/prboom/include/d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/d_event.h -------------------------------------------------------------------------------- /components/prboom/include/d_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/d_items.h -------------------------------------------------------------------------------- /components/prboom/include/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/d_main.h -------------------------------------------------------------------------------- /components/prboom/include/d_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/d_net.h -------------------------------------------------------------------------------- /components/prboom/include/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/d_player.h -------------------------------------------------------------------------------- /components/prboom/include/d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/d_think.h -------------------------------------------------------------------------------- /components/prboom/include/d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/d_ticcmd.h -------------------------------------------------------------------------------- /components/prboom/include/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/doomdata.h -------------------------------------------------------------------------------- /components/prboom/include/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/doomdef.h -------------------------------------------------------------------------------- /components/prboom/include/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/doomstat.h -------------------------------------------------------------------------------- /components/prboom/include/doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/doomtype.h -------------------------------------------------------------------------------- /components/prboom/include/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/dstrings.h -------------------------------------------------------------------------------- /components/prboom/include/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/f_finale.h -------------------------------------------------------------------------------- /components/prboom/include/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/f_wipe.h -------------------------------------------------------------------------------- /components/prboom/include/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/g_game.h -------------------------------------------------------------------------------- /components/prboom/include/gl_intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/gl_intern.h -------------------------------------------------------------------------------- /components/prboom/include/gl_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/gl_struct.h -------------------------------------------------------------------------------- /components/prboom/include/hu_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/hu_lib.h -------------------------------------------------------------------------------- /components/prboom/include/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/hu_stuff.h -------------------------------------------------------------------------------- /components/prboom/include/i_joy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/i_joy.h -------------------------------------------------------------------------------- /components/prboom/include/i_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/i_main.h -------------------------------------------------------------------------------- /components/prboom/include/i_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/i_network.h -------------------------------------------------------------------------------- /components/prboom/include/i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/i_sound.h -------------------------------------------------------------------------------- /components/prboom/include/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/i_system.h -------------------------------------------------------------------------------- /components/prboom/include/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/i_video.h -------------------------------------------------------------------------------- /components/prboom/include/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/info.h -------------------------------------------------------------------------------- /components/prboom/include/lprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/lprintf.h -------------------------------------------------------------------------------- /components/prboom/include/m_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/m_argv.h -------------------------------------------------------------------------------- /components/prboom/include/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/m_bbox.h -------------------------------------------------------------------------------- /components/prboom/include/m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/m_cheat.h -------------------------------------------------------------------------------- /components/prboom/include/m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/m_fixed.h -------------------------------------------------------------------------------- /components/prboom/include/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/m_menu.h -------------------------------------------------------------------------------- /components/prboom/include/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/m_misc.h -------------------------------------------------------------------------------- /components/prboom/include/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/m_random.h -------------------------------------------------------------------------------- /components/prboom/include/m_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/m_swap.h -------------------------------------------------------------------------------- /components/prboom/include/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/md5.h -------------------------------------------------------------------------------- /components/prboom/include/mmus2mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/mmus2mid.h -------------------------------------------------------------------------------- /components/prboom/include/p_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/p_checksum.h -------------------------------------------------------------------------------- /components/prboom/include/p_enemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/p_enemy.h -------------------------------------------------------------------------------- /components/prboom/include/p_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/p_inter.h -------------------------------------------------------------------------------- /components/prboom/include/p_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/p_map.h -------------------------------------------------------------------------------- /components/prboom/include/p_maputl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/p_maputl.h -------------------------------------------------------------------------------- /components/prboom/include/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/p_mobj.h -------------------------------------------------------------------------------- /components/prboom/include/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/p_pspr.h -------------------------------------------------------------------------------- /components/prboom/include/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/p_saveg.h -------------------------------------------------------------------------------- /components/prboom/include/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/p_setup.h -------------------------------------------------------------------------------- /components/prboom/include/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/p_spec.h -------------------------------------------------------------------------------- /components/prboom/include/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/p_tick.h -------------------------------------------------------------------------------- /components/prboom/include/p_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/p_user.h -------------------------------------------------------------------------------- /components/prboom/include/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/protocol.h -------------------------------------------------------------------------------- /components/prboom/include/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/r_bsp.h -------------------------------------------------------------------------------- /components/prboom/include/r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/r_data.h -------------------------------------------------------------------------------- /components/prboom/include/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/r_defs.h -------------------------------------------------------------------------------- /components/prboom/include/r_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/r_demo.h -------------------------------------------------------------------------------- /components/prboom/include/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/r_draw.h -------------------------------------------------------------------------------- /components/prboom/include/r_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/r_filter.h -------------------------------------------------------------------------------- /components/prboom/include/r_fps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/r_fps.h -------------------------------------------------------------------------------- /components/prboom/include/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/r_main.h -------------------------------------------------------------------------------- /components/prboom/include/r_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/r_patch.h -------------------------------------------------------------------------------- /components/prboom/include/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/r_plane.h -------------------------------------------------------------------------------- /components/prboom/include/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/r_segs.h -------------------------------------------------------------------------------- /components/prboom/include/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/r_sky.h -------------------------------------------------------------------------------- /components/prboom/include/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/r_state.h -------------------------------------------------------------------------------- /components/prboom/include/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/r_things.h -------------------------------------------------------------------------------- /components/prboom/include/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/s_sound.h -------------------------------------------------------------------------------- /components/prboom/include/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/sounds.h -------------------------------------------------------------------------------- /components/prboom/include/st_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/st_lib.h -------------------------------------------------------------------------------- /components/prboom/include/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/st_stuff.h -------------------------------------------------------------------------------- /components/prboom/include/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/tables.h -------------------------------------------------------------------------------- /components/prboom/include/v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/v_video.h -------------------------------------------------------------------------------- /components/prboom/include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/version.h -------------------------------------------------------------------------------- /components/prboom/include/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/w_wad.h -------------------------------------------------------------------------------- /components/prboom/include/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/wi_stuff.h -------------------------------------------------------------------------------- /components/prboom/include/z_bmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/z_bmalloc.h -------------------------------------------------------------------------------- /components/prboom/include/z_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/include/z_zone.h -------------------------------------------------------------------------------- /components/prboom/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/info.c -------------------------------------------------------------------------------- /components/prboom/lprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/lprintf.c -------------------------------------------------------------------------------- /components/prboom/m_argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/m_argv.c -------------------------------------------------------------------------------- /components/prboom/m_bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/m_bbox.c -------------------------------------------------------------------------------- /components/prboom/m_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/m_cheat.c -------------------------------------------------------------------------------- /components/prboom/m_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/m_menu.c -------------------------------------------------------------------------------- /components/prboom/m_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/m_misc.c -------------------------------------------------------------------------------- /components/prboom/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/m_random.c -------------------------------------------------------------------------------- /components/prboom/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/md5.c -------------------------------------------------------------------------------- /components/prboom/mmus2mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/mmus2mid.c -------------------------------------------------------------------------------- /components/prboom/native/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/native/Makefile -------------------------------------------------------------------------------- /components/prboom/native/i_joy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/native/i_joy.c -------------------------------------------------------------------------------- /components/prboom/native/i_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/native/i_main.c -------------------------------------------------------------------------------- /components/prboom/native/i_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/native/i_network.c -------------------------------------------------------------------------------- /components/prboom/native/i_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/native/i_sound.c -------------------------------------------------------------------------------- /components/prboom/native/i_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/native/i_system.c -------------------------------------------------------------------------------- /components/prboom/native/i_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/native/i_video.c -------------------------------------------------------------------------------- /components/prboom/native/include/rom/ets_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/native/include/rom/ets_sys.h -------------------------------------------------------------------------------- /components/prboom/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_ceilng.c -------------------------------------------------------------------------------- /components/prboom/p_checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_checksum.c -------------------------------------------------------------------------------- /components/prboom/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_doors.c -------------------------------------------------------------------------------- /components/prboom/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_enemy.c -------------------------------------------------------------------------------- /components/prboom/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_floor.c -------------------------------------------------------------------------------- /components/prboom/p_genlin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_genlin.c -------------------------------------------------------------------------------- /components/prboom/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_inter.c -------------------------------------------------------------------------------- /components/prboom/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_lights.c -------------------------------------------------------------------------------- /components/prboom/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_map.c -------------------------------------------------------------------------------- /components/prboom/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_maputl.c -------------------------------------------------------------------------------- /components/prboom/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_mobj.c -------------------------------------------------------------------------------- /components/prboom/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_plats.c -------------------------------------------------------------------------------- /components/prboom/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_pspr.c -------------------------------------------------------------------------------- /components/prboom/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_saveg.c -------------------------------------------------------------------------------- /components/prboom/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_setup.c -------------------------------------------------------------------------------- /components/prboom/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_sight.c -------------------------------------------------------------------------------- /components/prboom/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_spec.c -------------------------------------------------------------------------------- /components/prboom/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_switch.c -------------------------------------------------------------------------------- /components/prboom/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_telept.c -------------------------------------------------------------------------------- /components/prboom/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_tick.c -------------------------------------------------------------------------------- /components/prboom/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/p_user.c -------------------------------------------------------------------------------- /components/prboom/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_bsp.c -------------------------------------------------------------------------------- /components/prboom/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_data.c -------------------------------------------------------------------------------- /components/prboom/r_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_demo.c -------------------------------------------------------------------------------- /components/prboom/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_draw.c -------------------------------------------------------------------------------- /components/prboom/r_drawcolpipeline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_drawcolpipeline.inl -------------------------------------------------------------------------------- /components/prboom/r_drawcolumn.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_drawcolumn.inl -------------------------------------------------------------------------------- /components/prboom/r_drawflush.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_drawflush.inl -------------------------------------------------------------------------------- /components/prboom/r_drawspan.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_drawspan.inl -------------------------------------------------------------------------------- /components/prboom/r_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_filter.c -------------------------------------------------------------------------------- /components/prboom/r_fps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_fps.c -------------------------------------------------------------------------------- /components/prboom/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_main.c -------------------------------------------------------------------------------- /components/prboom/r_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_patch.c -------------------------------------------------------------------------------- /components/prboom/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_plane.c -------------------------------------------------------------------------------- /components/prboom/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_segs.c -------------------------------------------------------------------------------- /components/prboom/r_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_sky.c -------------------------------------------------------------------------------- /components/prboom/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/r_things.c -------------------------------------------------------------------------------- /components/prboom/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/s_sound.c -------------------------------------------------------------------------------- /components/prboom/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/sounds.c -------------------------------------------------------------------------------- /components/prboom/st_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/st_lib.c -------------------------------------------------------------------------------- /components/prboom/st_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/st_stuff.c -------------------------------------------------------------------------------- /components/prboom/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/tables.c -------------------------------------------------------------------------------- /components/prboom/v_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/v_video.c -------------------------------------------------------------------------------- /components/prboom/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/version.c -------------------------------------------------------------------------------- /components/prboom/w_memcache.c.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/w_memcache.c.disabled -------------------------------------------------------------------------------- /components/prboom/w_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/w_mmap.c -------------------------------------------------------------------------------- /components/prboom/w_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/w_wad.c -------------------------------------------------------------------------------- /components/prboom/wi_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/wi_stuff.c -------------------------------------------------------------------------------- /components/prboom/z_bmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/z_bmalloc.c -------------------------------------------------------------------------------- /components/prboom/z_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/components/prboom/z_zone.c -------------------------------------------------------------------------------- /doom1-cut.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/doom1-cut.wad -------------------------------------------------------------------------------- /flashwad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/flashwad.sh -------------------------------------------------------------------------------- /main/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/main/Makefile -------------------------------------------------------------------------------- /main/app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/main/app_main.c -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/main/component.mk -------------------------------------------------------------------------------- /partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/partitions.csv -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/readme.rst -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/sdkconfig -------------------------------------------------------------------------------- /tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/tile.png -------------------------------------------------------------------------------- /tile.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtherCrashOverride/doom-odroid-go/HEAD/tile.raw --------------------------------------------------------------------------------