├── COPYING.txt ├── DOOM CLASSIC IOS v.2.1 README.txt ├── DoomClassic ├── base.parm ├── base │ └── prboom.wad ├── code │ └── iphone │ │ ├── ControlsMenuView.xib │ │ ├── ControlsMenuViewController.h │ │ ├── ControlsMenuViewController.mm │ │ ├── ControlsMenuViewi5.xib │ │ ├── ControlsMenuView~ipad.xib │ │ ├── CreditsMenuView.xib │ │ ├── CreditsMenuViewController.h │ │ ├── CreditsMenuViewController.mm │ │ ├── CreditsMenuViewi5.xib │ │ ├── CreditsMenuView~ipad.xib │ │ ├── Doom.xcodeproj │ │ ├── _backup_project.bak │ │ ├── greghodges.mode1v3 │ │ ├── greghodges.pbxuser │ │ ├── jeff.farrand.mode1v3 │ │ ├── jeff.farrand.pbxuser │ │ ├── johnc.pbxuser │ │ ├── johnc.perspectivev3 │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ ├── jeff.farrand.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ └── ryan.gerleve.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── DOOM.xcscheme │ │ └── xcuserdata │ │ │ ├── Farrand.xcuserdatad │ │ │ └── xcschemes │ │ │ │ └── xcschememanagement.plist │ │ │ ├── jeff.farrand.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── Doom.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── ryan.gerleve.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ ├── Doom_App.h │ │ ├── Doom_App.m │ │ ├── EpisodeMenuView.xib │ │ ├── EpisodeMenuViewController.h │ │ ├── EpisodeMenuViewController.mm │ │ ├── EpisodeMenuViewi5.xib │ │ ├── EpisodeMenuView~ipad.xib │ │ ├── Info.plist │ │ ├── LegalMenuView.xib │ │ ├── LegalMenuViewController.h │ │ ├── LegalMenuViewController.mm │ │ ├── LegalMenuViewi5.xib │ │ ├── LegalMenuView~ipad.xib │ │ ├── MainMenuView.xib │ │ ├── MainMenuViewController.h │ │ ├── MainMenuViewController.mm │ │ ├── MainMenuViewi5.xib │ │ ├── MainMenuView~ipad.xib │ │ ├── MainNavController.h │ │ ├── MainNavController.m │ │ ├── MissionMenuView.xib │ │ ├── MissionMenuViewController.h │ │ ├── MissionMenuViewController.mm │ │ ├── MissionMenuViewi5.xib │ │ ├── MissionMenuView~ipad.xib │ │ ├── OpenGLView.xib │ │ ├── OpenGLViewi5.xib │ │ ├── OpenGLView~ipad.xib │ │ ├── SettingsMenuView.xib │ │ ├── SettingsMenuViewController.h │ │ ├── SettingsMenuViewController.mm │ │ ├── SettingsMenuViewi5.xib │ │ ├── SettingsMenuView~ipad.xib │ │ ├── dist.plist │ │ ├── doom_Prefix.pch │ │ ├── doom_wads.cpp │ │ ├── doom_wads.h │ │ └── main.m └── doomtool │ ├── doomtool.1 │ ├── doomtool.h │ ├── doomtool.xcodeproj │ ├── greghodges.mode1v3 │ ├── greghodges.pbxuser │ ├── johnc.pbxuser │ ├── johnc.perspectivev3 │ ├── project.pbxproj │ └── xcuserdata │ │ └── jeff.farrand.xcuserdatad │ │ └── xcschemes │ │ ├── doomtool.xcscheme │ │ └── xcschememanagement.plist │ └── main.c ├── DoomClassics.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── DoomClassics.xccheckout └── xcuserdata │ ├── Farrand.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ ├── WorkspaceSettings.xcsettings │ └── xcdebugger │ │ ├── Breakpoints_v2.xcbkptlist │ │ └── Expressions.xcexplist │ ├── jeff.farrand.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ │ ├── Breakpoints.xcbkptlist │ │ └── Expressions.xcexplist │ └── ryan.gerleve.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints.xcbkptlist ├── README.txt ├── common ├── SDL_shim │ ├── SDL_Mixer.h │ └── ios │ │ └── SDL_Mixer.m ├── embeddedaudiosynthesis │ ├── Android.mk │ ├── EASGlue.c │ ├── EASGlue.h │ ├── MODULE_LICENSE_APACHE2 │ ├── NOTICE │ ├── ThirdPartyProject.prop │ ├── arm-fm-22k │ │ ├── Makefile │ │ ├── bin │ │ │ └── arm-fm-22k │ │ ├── host_src │ │ │ ├── arm-fm-22k.mak │ │ │ ├── eas.h │ │ │ ├── eas_build.h │ │ │ ├── eas_chorus.h │ │ │ ├── eas_config.c │ │ │ ├── eas_config.h │ │ │ ├── eas_debugmsgs.h │ │ │ ├── eas_host.h │ │ │ ├── eas_hostmm.c │ │ │ ├── eas_main.c │ │ │ ├── eas_report.c │ │ │ ├── eas_report.h │ │ │ ├── eas_reverb.h │ │ │ ├── eas_types.h │ │ │ ├── eas_wave.c │ │ │ └── eas_wave.h │ │ ├── lib │ │ │ └── libarm-fm-22k.a │ │ └── lib_src │ │ │ ├── arm-fm-22k_lib.mak │ │ │ ├── eas_audioconst.h │ │ │ ├── eas_chorus.c │ │ │ ├── eas_chorusdata.c │ │ │ ├── eas_chorusdata.h │ │ │ ├── eas_ctype.h │ │ │ ├── eas_data.c │ │ │ ├── eas_data.h │ │ │ ├── eas_effects.h │ │ │ ├── eas_fmengine.c │ │ │ ├── eas_fmengine.h │ │ │ ├── eas_fmsndlib.c │ │ │ ├── eas_fmsynth.c │ │ │ ├── eas_fmsynth.h │ │ │ ├── eas_fmtables.c │ │ │ ├── eas_ima_tables.c │ │ │ ├── eas_imaadpcm.c │ │ │ ├── eas_imelody.c │ │ │ ├── eas_imelodydata.c │ │ │ ├── eas_imelodydata.h │ │ │ ├── eas_math.c │ │ │ ├── eas_math.h │ │ │ ├── eas_midi.c │ │ │ ├── eas_midi.h │ │ │ ├── eas_midictrl.h │ │ │ ├── eas_mididata.c │ │ │ ├── eas_miditypes.h │ │ │ ├── eas_mixbuf.c │ │ │ ├── eas_mixer.c │ │ │ ├── eas_mixer.h │ │ │ ├── eas_ota.c │ │ │ ├── eas_otadata.c │ │ │ ├── eas_otadata.h │ │ │ ├── eas_pan.c │ │ │ ├── eas_pan.h │ │ │ ├── eas_parser.h │ │ │ ├── eas_pcm.c │ │ │ ├── eas_pcm.h │ │ │ ├── eas_pcmdata.c │ │ │ ├── eas_pcmdata.h │ │ │ ├── eas_public.c │ │ │ ├── eas_reverb.c │ │ │ ├── eas_reverbdata.c │ │ │ ├── eas_reverbdata.h │ │ │ ├── eas_rtttl.c │ │ │ ├── eas_rtttldata.c │ │ │ ├── eas_rtttldata.h │ │ │ ├── eas_smf.c │ │ │ ├── eas_smf.h │ │ │ ├── eas_smfdata.c │ │ │ ├── eas_smfdata.h │ │ │ ├── eas_sndlib.h │ │ │ ├── eas_synth.h │ │ │ ├── eas_synth_protos.h │ │ │ ├── eas_synthcfg.h │ │ │ ├── eas_vm_protos.h │ │ │ ├── eas_voicemgt.c │ │ │ ├── eas_wavefile.c │ │ │ ├── eas_wavefile.h │ │ │ └── eas_wavefiledata.c │ ├── arm-hybrid-22k │ │ ├── Makefile │ │ ├── bin │ │ │ └── arm-hybrid-22k │ │ ├── host_src │ │ │ ├── arm-hybrid-22k.mak │ │ │ ├── eas.h │ │ │ ├── eas_build.h │ │ │ ├── eas_chorus.h │ │ │ ├── eas_config.c │ │ │ ├── eas_config.h │ │ │ ├── eas_debugmsgs.h │ │ │ ├── eas_host.h │ │ │ ├── eas_hostmm.c │ │ │ ├── eas_main.c │ │ │ ├── eas_report.c │ │ │ ├── eas_report.h │ │ │ ├── eas_reverb.h │ │ │ ├── eas_types.h │ │ │ ├── eas_wave.c │ │ │ └── eas_wave.h │ │ ├── lib │ │ │ └── libarm-hybrid-22k.a │ │ └── lib_src │ │ │ ├── ARM-E_filter_gnu.s │ │ │ ├── ARM-E_interpolate_loop_gnu.s │ │ │ ├── ARM-E_interpolate_noloop_gnu.s │ │ │ ├── ARM-E_mastergain_gnu.s │ │ │ ├── ARM-E_voice_gain_gnu.s │ │ │ ├── ARM_synth_constants_gnu.inc │ │ │ ├── arm-hybrid-22k_lib.mak │ │ │ ├── eas_audioconst.h │ │ │ ├── eas_chorus.c │ │ │ ├── eas_chorusdata.c │ │ │ ├── eas_chorusdata.h │ │ │ ├── eas_ctype.h │ │ │ ├── eas_data.c │ │ │ ├── eas_data.h │ │ │ ├── eas_effects.h │ │ │ ├── eas_fmengine.c │ │ │ ├── eas_fmengine.h │ │ │ ├── eas_fmsynth.c │ │ │ ├── eas_fmsynth.h │ │ │ ├── eas_fmtables.c │ │ │ ├── eas_ima_tables.c │ │ │ ├── eas_imaadpcm.c │ │ │ ├── eas_imelody.c │ │ │ ├── eas_imelodydata.c │ │ │ ├── eas_imelodydata.h │ │ │ ├── eas_math.c │ │ │ ├── eas_math.h │ │ │ ├── eas_midi.c │ │ │ ├── eas_midi.h │ │ │ ├── eas_midictrl.h │ │ │ ├── eas_mididata.c │ │ │ ├── eas_miditypes.h │ │ │ ├── eas_mixbuf.c │ │ │ ├── eas_mixer.c │ │ │ ├── eas_mixer.h │ │ │ ├── eas_ota.c │ │ │ ├── eas_otadata.c │ │ │ ├── eas_otadata.h │ │ │ ├── eas_pan.c │ │ │ ├── eas_pan.h │ │ │ ├── eas_parser.h │ │ │ ├── eas_pcm.c │ │ │ ├── eas_pcm.h │ │ │ ├── eas_pcmdata.c │ │ │ ├── eas_pcmdata.h │ │ │ ├── eas_public.c │ │ │ ├── eas_reverb.c │ │ │ ├── eas_reverbdata.c │ │ │ ├── eas_reverbdata.h │ │ │ ├── eas_rtttl.c │ │ │ ├── eas_rtttldata.c │ │ │ ├── eas_rtttldata.h │ │ │ ├── eas_smf.c │ │ │ ├── eas_smf.h │ │ │ ├── eas_smfdata.c │ │ │ ├── eas_smfdata.h │ │ │ ├── eas_sndlib.h │ │ │ ├── eas_synth.h │ │ │ ├── eas_synth_protos.h │ │ │ ├── eas_synthcfg.h │ │ │ ├── eas_vm_protos.h │ │ │ ├── eas_voicemgt.c │ │ │ ├── eas_wavefile.c │ │ │ ├── eas_wavefile.h │ │ │ ├── eas_wavefiledata.c │ │ │ ├── eas_wt_IPC_frame.h │ │ │ ├── eas_wtengine.c │ │ │ ├── eas_wtengine.h │ │ │ ├── eas_wtsynth.c │ │ │ ├── eas_wtsynth.h │ │ │ └── hybrid_22khz_mcu.c │ ├── arm-wt-22k │ │ ├── Android.mk │ │ ├── bin │ │ │ └── arm-wt-22k │ │ ├── host_src │ │ │ ├── arm-wt-22k.mak │ │ │ ├── eas.h │ │ │ ├── eas_build.h │ │ │ ├── eas_chorus.h │ │ │ ├── eas_config.c │ │ │ ├── eas_config.h │ │ │ ├── eas_debugmsgs.h │ │ │ ├── eas_host.h │ │ │ ├── eas_hostmm.c │ │ │ ├── eas_main.c │ │ │ ├── eas_report.c │ │ │ ├── eas_report.h │ │ │ ├── eas_reverb.h │ │ │ ├── eas_types.h │ │ │ ├── eas_wave.c │ │ │ ├── eas_wave.h │ │ │ └── jet.h │ │ ├── jetcreator_lib_src │ │ │ └── darwin-x86 │ │ │ │ ├── EASLIb.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcuserdata │ │ │ │ │ ├── jeff.farrand.xcuserdatad │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── EASLIb.xcscheme │ │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ │ └── ryan.gerleve.xcuserdatad │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── EASLIb.xcscheme │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ ├── EASLib.c │ │ │ │ ├── EASLib.h │ │ │ │ ├── EASLibVst.c │ │ │ │ ├── README.txt │ │ │ │ ├── eas_host_debug.h │ │ │ │ ├── eastestv37.c │ │ │ │ ├── easwt_vst_lib.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcuserdata │ │ │ │ │ ├── jeff.farrand.xcuserdatad │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── easwt_vst_lib.xcscheme │ │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ │ └── ryan.gerleve.xcuserdatad │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── easwt_vst_lib.xcscheme │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ └── wt_44khz.c │ │ ├── lib │ │ │ └── libarm-wt-22k.a │ │ ├── lib_src │ │ │ ├── ARM-E_filter_gnu.s │ │ │ ├── ARM-E_interpolate_loop_gnu.s │ │ │ ├── ARM-E_interpolate_noloop_gnu.s │ │ │ ├── ARM-E_mastergain_gnu.s │ │ │ ├── ARM-E_voice_gain_gnu.s │ │ │ ├── ARM_synth_constants_gnu.inc │ │ │ ├── arm-wt-22k_lib.mak │ │ │ ├── dls.h │ │ │ ├── dls2.h │ │ │ ├── eas_audioconst.h │ │ │ ├── eas_chorus.c │ │ │ ├── eas_chorusdata.c │ │ │ ├── eas_chorusdata.h │ │ │ ├── eas_ctype.h │ │ │ ├── eas_data.c │ │ │ ├── eas_data.h │ │ │ ├── eas_dlssynth.c │ │ │ ├── eas_dlssynth.h │ │ │ ├── eas_effects.h │ │ │ ├── eas_flog.c │ │ │ ├── eas_ima_tables.c │ │ │ ├── eas_imaadpcm.c │ │ │ ├── eas_imelody.c │ │ │ ├── eas_imelodydata.c │ │ │ ├── eas_imelodydata.h │ │ │ ├── eas_math.c │ │ │ ├── eas_math.h │ │ │ ├── eas_mdls.c │ │ │ ├── eas_mdls.h │ │ │ ├── eas_midi.c │ │ │ ├── eas_midi.h │ │ │ ├── eas_midictrl.h │ │ │ ├── eas_mididata.c │ │ │ ├── eas_miditypes.h │ │ │ ├── eas_mixbuf.c │ │ │ ├── eas_mixer.c │ │ │ ├── eas_mixer.h │ │ │ ├── eas_ota.c │ │ │ ├── eas_otadata.c │ │ │ ├── eas_otadata.h │ │ │ ├── eas_pan.c │ │ │ ├── eas_pan.h │ │ │ ├── eas_parser.h │ │ │ ├── eas_pcm.c │ │ │ ├── eas_pcm.h │ │ │ ├── eas_pcmdata.c │ │ │ ├── eas_pcmdata.h │ │ │ ├── eas_public.c │ │ │ ├── eas_reverb.c │ │ │ ├── eas_reverbdata.c │ │ │ ├── eas_reverbdata.h │ │ │ ├── eas_rtttl.c │ │ │ ├── eas_rtttldata.c │ │ │ ├── eas_rtttldata.h │ │ │ ├── eas_smf.c │ │ │ ├── eas_smf.h │ │ │ ├── eas_smfdata.c │ │ │ ├── eas_smfdata.h │ │ │ ├── eas_sndlib.h │ │ │ ├── eas_synth.h │ │ │ ├── eas_synth_protos.h │ │ │ ├── eas_synthcfg.h │ │ │ ├── eas_tcdata.c │ │ │ ├── eas_tcdata.h │ │ │ ├── eas_tonecontrol.c │ │ │ ├── eas_vm_protos.h │ │ │ ├── eas_voicemgt.c │ │ │ ├── eas_wavefile.c │ │ │ ├── eas_wavefile.h │ │ │ ├── eas_wavefiledata.c │ │ │ ├── eas_wt_IPC_frame.h │ │ │ ├── eas_wtengine.c │ │ │ ├── eas_wtengine.h │ │ │ ├── eas_wtsynth.c │ │ │ ├── eas_wtsynth.h │ │ │ ├── eas_xmf.c │ │ │ ├── eas_xmf.h │ │ │ ├── eas_xmfdata.c │ │ │ ├── eas_xmfdata.h │ │ │ ├── jet.c │ │ │ ├── jet_data.h │ │ │ └── wt_22khz.c │ │ ├── misc │ │ │ └── eas_host.c │ │ └── vectors │ │ │ ├── Leadsol.mxmf │ │ │ ├── Leadsol_out.wav │ │ │ ├── WAVEtest.wav │ │ │ ├── WAVEtest_out.wav │ │ │ ├── abba.imy │ │ │ ├── abba_out.wav │ │ │ ├── ants.mid │ │ │ ├── ants_out.wav │ │ │ ├── greensleeves.rtttl │ │ │ ├── greensleeves_out.wav │ │ │ ├── test.ota │ │ │ └── test_out.wav │ └── docs │ │ ├── EASLibrary3_5.odt │ │ ├── EASLibrary3_5.pdf │ │ ├── EAS_API_Reference.odt │ │ ├── EAS_API_Reference.pdf │ │ ├── EAS_Library_Integration_Guide.odt │ │ ├── EAS_Library_Integration_Guide.pdf │ │ ├── JET_Authoring_Guidelines.html │ │ ├── JET_Authoring_Guidelines_files │ │ ├── header.htm │ │ ├── image001.jpg │ │ ├── image002.emz │ │ ├── image004.emz │ │ ├── image006.emz │ │ ├── image008.gif │ │ ├── image010.gif │ │ ├── image011.png │ │ ├── image012.gif │ │ ├── image013.gif │ │ ├── image014.gif │ │ └── image015.emz │ │ ├── JET_Creator_User_Manual.html │ │ ├── JET_Creator_User_Manual_files │ │ ├── header.htm │ │ ├── image001.emz │ │ ├── image002.gif │ │ ├── image003.emz │ │ ├── image004.gif │ │ ├── image005.emz │ │ ├── image006.gif │ │ ├── image007.emz │ │ ├── image008.gif │ │ ├── image009.png │ │ ├── image010.jpg │ │ ├── image011.png │ │ ├── image012.jpg │ │ ├── image013.png │ │ ├── image014.jpg │ │ ├── image015.png │ │ ├── image016.jpg │ │ ├── image017.png │ │ ├── image018.jpg │ │ ├── image019.png │ │ ├── image020.jpg │ │ ├── image021.png │ │ ├── image022.jpg │ │ ├── image023.png │ │ ├── image024.jpg │ │ ├── image025.emz │ │ ├── image026.gif │ │ ├── image027.emz │ │ ├── image028.gif │ │ ├── image029.jpg │ │ ├── image030.emz │ │ ├── image031.emz │ │ ├── image032.emz │ │ ├── image033.emz │ │ ├── image034.emz │ │ └── image035.emz │ │ ├── JET_Programming_Manual.html │ │ ├── JET_Programming_Manual.odt │ │ ├── JET_Programming_Manual.pdf │ │ └── JET_Programming_Manual_files │ │ ├── header.htm │ │ ├── image002.png │ │ ├── image004.png │ │ ├── image006.png │ │ ├── image008.png │ │ ├── image010.png │ │ ├── image012.png │ │ ├── image013.emz │ │ ├── image014.emz │ │ ├── image015.emz │ │ ├── image016.emz │ │ ├── image017.emz │ │ └── image018.emz ├── idmobilelib │ ├── ios │ │ ├── AnimatedImage.h │ │ ├── AnimatedImage.mm │ │ ├── Carousel.h │ │ ├── Carousel.mm │ │ ├── GameCenter.h │ │ ├── GameCenter.mm │ │ ├── InAppStore.h │ │ ├── InAppStore.mm │ │ ├── Label.h │ │ ├── Label.mm │ │ ├── LabelButton.h │ │ ├── LabelButton.mm │ │ ├── Localization.h │ │ ├── Localization.mm │ │ ├── LocalizationObjectiveC.h │ │ ├── RenderContext.h │ │ ├── RenderContext.mm │ │ ├── Slider.h │ │ ├── Slider.mm │ │ ├── Switch.h │ │ ├── Switch.mm │ │ ├── View.h │ │ ├── View.mm │ │ ├── idmobilelib.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ │ └── idmobilelib.xcscheme │ │ │ └── xcuserdata │ │ │ │ ├── Farrand.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ └── jeff.farrand.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ └── xcschememanagement.plist │ │ ├── ios_interface.h │ │ ├── ios_interface.mm │ │ ├── objectivec_utilities.h │ │ └── objectivec_utilities.mm │ └── sys │ │ └── sys_defines.h ├── ios │ ├── EmbeddedAudioSynthesis │ │ └── EmbeddedAudioSynthesis.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcuserdata │ │ │ ├── Farrand.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── EmbeddedAudioSynthesis.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ ├── jeff.farrand.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── EmbeddedAudioSynthesis.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── ryan.gerleve.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── EmbeddedAudioSynthesis.xcscheme │ │ │ └── xcschememanagement.plist │ ├── doomengine.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── ryan.gerleve.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── doomengine.xcscheme │ │ └── xcuserdata │ │ │ ├── Farrand.xcuserdatad │ │ │ └── xcschemes │ │ │ │ └── xcschememanagement.plist │ │ │ ├── jeff.farrand.xcuserdatad │ │ │ └── xcschemes │ │ │ │ └── xcschememanagement.plist │ │ │ └── ryan.gerleve.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── doomengine │ │ ├── BackgroundMusic.cpp │ │ ├── DoomGameCenterMatch.cpp │ │ ├── DoomGameCenterMatch.h │ │ ├── EAGLView.h │ │ ├── EAGLView.m │ │ ├── SoundEngine.cpp │ │ ├── SoundEngine.h │ │ ├── arialGlyphRects.h │ │ ├── cmd.c │ │ ├── cvar.c │ │ ├── cvar.h │ │ ├── doomiphone.h │ │ ├── gles_glue.c │ │ ├── gles_glue.h │ │ ├── hud.c │ │ ├── ipak.c │ │ ├── ipak.h │ │ ├── iphone_async.cpp │ │ ├── iphone_common.h │ │ ├── iphone_common.mm │ │ ├── iphone_delegate.h │ │ ├── iphone_delegate.mm │ │ ├── iphone_doom.h │ │ ├── iphone_email.h │ │ ├── iphone_email.m │ │ ├── iphone_glViewController.h │ │ ├── iphone_glViewController.mm │ │ ├── iphone_loop.c │ │ ├── iphone_main.c │ │ ├── iphone_mapSelect.c │ │ ├── iphone_net.c │ │ ├── iphone_qgl.h │ │ ├── iphone_qgl_enumerants.h │ │ ├── iphone_render.c │ │ ├── iphone_sound.c │ │ ├── iphone_start.cpp │ │ ├── iphone_sys.mm │ │ ├── misc.c │ │ ├── misc.h │ │ └── prboomInterface.c │ ├── prboom │ │ └── prboom.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcuserdata │ │ │ ├── Farrand.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── prboom.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ ├── jeff.farrand.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── prboom.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── ryan.gerleve.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── prboom.xcscheme │ │ │ └── xcschememanagement.plist │ └── tess │ │ └── tess.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ ├── Farrand.xcuserdatad │ │ └── xcschemes │ │ │ ├── tess.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── jeff.farrand.xcuserdatad │ │ └── xcschemes │ │ │ ├── tess.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── ryan.gerleve.xcuserdatad │ │ └── xcschemes │ │ ├── tess.xcscheme │ │ └── xcschememanagement.plist ├── libtess │ ├── README │ ├── alg-outline │ ├── dict-list.h │ ├── dict.c │ ├── dict.h │ ├── geom.c │ ├── geom.h │ ├── memalloc.c │ ├── memalloc.h │ ├── mesh.c │ ├── mesh.h │ ├── normal.c │ ├── normal.h │ ├── priorityq-heap.c │ ├── priorityq-heap.h │ ├── priorityq-sort.h │ ├── priorityq.c │ ├── priorityq.h │ ├── render.c │ ├── render.h │ ├── sweep.c │ ├── sweep.h │ ├── tess.c │ ├── tess.h │ ├── tessmono.c │ └── tessmono.h └── prboom │ ├── Makefile.am │ ├── SDL │ └── i_sound.c │ ├── SDL_opengl.h │ ├── am_map.c │ ├── am_map.h │ ├── config.h │ ├── d_client.c │ ├── d_deh.c │ ├── d_deh.h │ ├── d_englsh.h │ ├── d_event.h │ ├── d_ipxgate.c │ ├── d_items.c │ ├── d_items.h │ ├── d_main.c │ ├── d_main.h │ ├── d_net.h │ ├── d_player.h │ ├── d_server.c │ ├── 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 │ ├── gl_intern.h │ ├── gl_main.c │ ├── gl_struct.h │ ├── gl_texture.c │ ├── hu_lib.c │ ├── hu_lib.h │ ├── hu_stuff.c │ ├── hu_stuff.h │ ├── i_joy.h │ ├── i_main.h │ ├── i_network.h │ ├── i_sound.h │ ├── i_system.h │ ├── i_video.h │ ├── info.c │ ├── info.h │ ├── lprintf.c │ ├── lprintf.h │ ├── m_argv.c │ ├── m_argv.h │ ├── m_bbox.c │ ├── m_bbox.h │ ├── m_cheat.c │ ├── m_cheat.h │ ├── m_fixed.h │ ├── m_menu.c │ ├── m_menu.h │ ├── m_misc.c │ ├── m_misc.h │ ├── m_random.c │ ├── m_random.h │ ├── m_swap.h │ ├── md5.c │ ├── md5.h │ ├── mmus2mid.c │ ├── mmus2mid.h │ ├── p_ceilng.c │ ├── p_checksum.c │ ├── p_checksum.h │ ├── p_doors.c │ ├── p_enemy.c │ ├── p_enemy.h │ ├── p_floor.c │ ├── p_genlin.c │ ├── p_inter.c │ ├── p_inter.h │ ├── p_lights.c │ ├── p_map.c │ ├── p_map.h │ ├── p_maputl.c │ ├── p_maputl.h │ ├── p_mobj.c │ ├── p_mobj.h │ ├── p_plats.c │ ├── p_pspr.c │ ├── p_pspr.h │ ├── p_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 │ ├── p_user.h │ ├── protocol.h │ ├── r_bsp.c │ ├── r_bsp.h │ ├── r_data.c │ ├── r_data.h │ ├── r_defs.h │ ├── r_demo.c │ ├── r_demo.h │ ├── r_draw.c │ ├── r_draw.h │ ├── r_drawcolpipeline.inl │ ├── r_drawcolumn.inl │ ├── r_drawflush.inl │ ├── r_drawspan.inl │ ├── r_filter.c │ ├── r_filter.h │ ├── r_fps.c │ ├── r_fps.h │ ├── r_main.c │ ├── r_main.h │ ├── r_patch.c │ ├── r_patch.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 │ ├── tables.c │ ├── tables.h │ ├── v_video.c │ ├── v_video.h │ ├── version.c │ ├── version.h │ ├── w_memcache.c │ ├── w_mmap.c │ ├── w_wad.c │ ├── w_wad.h │ ├── wi_stuff.c │ ├── wi_stuff.h │ ├── z_bmalloc.c │ ├── z_bmalloc.h │ ├── z_zone.c │ └── z_zone.h ├── gpl.txt └── readme_iDoom.txt /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/COPYING.txt -------------------------------------------------------------------------------- /DOOM CLASSIC IOS v.2.1 README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DOOM CLASSIC IOS v.2.1 README.txt -------------------------------------------------------------------------------- /DoomClassic/base.parm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/base.parm -------------------------------------------------------------------------------- /DoomClassic/base/prboom.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/base/prboom.wad -------------------------------------------------------------------------------- /DoomClassic/code/iphone/ControlsMenuView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/ControlsMenuView.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/ControlsMenuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/ControlsMenuViewController.h -------------------------------------------------------------------------------- /DoomClassic/code/iphone/ControlsMenuViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/ControlsMenuViewController.mm -------------------------------------------------------------------------------- /DoomClassic/code/iphone/ControlsMenuViewi5.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/ControlsMenuViewi5.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/ControlsMenuView~ipad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/ControlsMenuView~ipad.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/CreditsMenuView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/CreditsMenuView.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/CreditsMenuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/CreditsMenuViewController.h -------------------------------------------------------------------------------- /DoomClassic/code/iphone/CreditsMenuViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/CreditsMenuViewController.mm -------------------------------------------------------------------------------- /DoomClassic/code/iphone/CreditsMenuViewi5.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/CreditsMenuViewi5.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/CreditsMenuView~ipad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/CreditsMenuView~ipad.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom.xcodeproj/_backup_project.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom.xcodeproj/_backup_project.bak -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom.xcodeproj/greghodges.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom.xcodeproj/greghodges.mode1v3 -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom.xcodeproj/greghodges.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom.xcodeproj/greghodges.pbxuser -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom.xcodeproj/jeff.farrand.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom.xcodeproj/jeff.farrand.mode1v3 -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom.xcodeproj/jeff.farrand.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom.xcodeproj/jeff.farrand.pbxuser -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom.xcodeproj/johnc.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom.xcodeproj/johnc.pbxuser -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom.xcodeproj/johnc.perspectivev3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom.xcodeproj/johnc.perspectivev3 -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom.xcodeproj/xcshareddata/xcschemes/DOOM.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom.xcodeproj/xcshareddata/xcschemes/DOOM.xcscheme -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom.xcodeproj/xcuserdata/Farrand.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom.xcodeproj/xcuserdata/Farrand.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/Doom.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/Doom.xcscheme -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom.xcodeproj/xcuserdata/ryan.gerleve.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom.xcodeproj/xcuserdata/ryan.gerleve.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom_App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom_App.h -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Doom_App.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Doom_App.m -------------------------------------------------------------------------------- /DoomClassic/code/iphone/EpisodeMenuView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/EpisodeMenuView.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/EpisodeMenuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/EpisodeMenuViewController.h -------------------------------------------------------------------------------- /DoomClassic/code/iphone/EpisodeMenuViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/EpisodeMenuViewController.mm -------------------------------------------------------------------------------- /DoomClassic/code/iphone/EpisodeMenuViewi5.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/EpisodeMenuViewi5.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/EpisodeMenuView~ipad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/EpisodeMenuView~ipad.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/Info.plist -------------------------------------------------------------------------------- /DoomClassic/code/iphone/LegalMenuView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/LegalMenuView.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/LegalMenuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/LegalMenuViewController.h -------------------------------------------------------------------------------- /DoomClassic/code/iphone/LegalMenuViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/LegalMenuViewController.mm -------------------------------------------------------------------------------- /DoomClassic/code/iphone/LegalMenuViewi5.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/LegalMenuViewi5.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/LegalMenuView~ipad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/LegalMenuView~ipad.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/MainMenuView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/MainMenuView.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/MainMenuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/MainMenuViewController.h -------------------------------------------------------------------------------- /DoomClassic/code/iphone/MainMenuViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/MainMenuViewController.mm -------------------------------------------------------------------------------- /DoomClassic/code/iphone/MainMenuViewi5.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/MainMenuViewi5.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/MainMenuView~ipad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/MainMenuView~ipad.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/MainNavController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/MainNavController.h -------------------------------------------------------------------------------- /DoomClassic/code/iphone/MainNavController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/MainNavController.m -------------------------------------------------------------------------------- /DoomClassic/code/iphone/MissionMenuView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/MissionMenuView.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/MissionMenuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/MissionMenuViewController.h -------------------------------------------------------------------------------- /DoomClassic/code/iphone/MissionMenuViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/MissionMenuViewController.mm -------------------------------------------------------------------------------- /DoomClassic/code/iphone/MissionMenuViewi5.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/MissionMenuViewi5.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/MissionMenuView~ipad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/MissionMenuView~ipad.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/OpenGLView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/OpenGLView.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/OpenGLViewi5.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/OpenGLViewi5.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/OpenGLView~ipad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/OpenGLView~ipad.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/SettingsMenuView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/SettingsMenuView.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/SettingsMenuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/SettingsMenuViewController.h -------------------------------------------------------------------------------- /DoomClassic/code/iphone/SettingsMenuViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/SettingsMenuViewController.mm -------------------------------------------------------------------------------- /DoomClassic/code/iphone/SettingsMenuViewi5.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/SettingsMenuViewi5.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/SettingsMenuView~ipad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/SettingsMenuView~ipad.xib -------------------------------------------------------------------------------- /DoomClassic/code/iphone/dist.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/dist.plist -------------------------------------------------------------------------------- /DoomClassic/code/iphone/doom_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/doom_Prefix.pch -------------------------------------------------------------------------------- /DoomClassic/code/iphone/doom_wads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/doom_wads.cpp -------------------------------------------------------------------------------- /DoomClassic/code/iphone/doom_wads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/doom_wads.h -------------------------------------------------------------------------------- /DoomClassic/code/iphone/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/code/iphone/main.m -------------------------------------------------------------------------------- /DoomClassic/doomtool/doomtool.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/doomtool/doomtool.1 -------------------------------------------------------------------------------- /DoomClassic/doomtool/doomtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/doomtool/doomtool.h -------------------------------------------------------------------------------- /DoomClassic/doomtool/doomtool.xcodeproj/greghodges.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/doomtool/doomtool.xcodeproj/greghodges.mode1v3 -------------------------------------------------------------------------------- /DoomClassic/doomtool/doomtool.xcodeproj/greghodges.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/doomtool/doomtool.xcodeproj/greghodges.pbxuser -------------------------------------------------------------------------------- /DoomClassic/doomtool/doomtool.xcodeproj/johnc.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/doomtool/doomtool.xcodeproj/johnc.pbxuser -------------------------------------------------------------------------------- /DoomClassic/doomtool/doomtool.xcodeproj/johnc.perspectivev3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/doomtool/doomtool.xcodeproj/johnc.perspectivev3 -------------------------------------------------------------------------------- /DoomClassic/doomtool/doomtool.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/doomtool/doomtool.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DoomClassic/doomtool/doomtool.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/doomtool.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/doomtool/doomtool.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/doomtool.xcscheme -------------------------------------------------------------------------------- /DoomClassic/doomtool/doomtool.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/doomtool/doomtool.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DoomClassic/doomtool/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassic/doomtool/main.c -------------------------------------------------------------------------------- /DoomClassics.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassics.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DoomClassics.xcworkspace/xcshareddata/DoomClassics.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassics.xcworkspace/xcshareddata/DoomClassics.xccheckout -------------------------------------------------------------------------------- /DoomClassics.xcworkspace/xcuserdata/Farrand.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassics.xcworkspace/xcuserdata/Farrand.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DoomClassics.xcworkspace/xcuserdata/Farrand.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassics.xcworkspace/xcuserdata/Farrand.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /DoomClassics.xcworkspace/xcuserdata/Farrand.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassics.xcworkspace/xcuserdata/Farrand.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DoomClassics.xcworkspace/xcuserdata/Farrand.xcuserdatad/xcdebugger/Expressions.xcexplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassics.xcworkspace/xcuserdata/Farrand.xcuserdatad/xcdebugger/Expressions.xcexplist -------------------------------------------------------------------------------- /DoomClassics.xcworkspace/xcuserdata/jeff.farrand.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassics.xcworkspace/xcuserdata/jeff.farrand.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DoomClassics.xcworkspace/xcuserdata/jeff.farrand.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassics.xcworkspace/xcuserdata/jeff.farrand.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /DoomClassics.xcworkspace/xcuserdata/jeff.farrand.xcuserdatad/xcdebugger/Expressions.xcexplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassics.xcworkspace/xcuserdata/jeff.farrand.xcuserdatad/xcdebugger/Expressions.xcexplist -------------------------------------------------------------------------------- /DoomClassics.xcworkspace/xcuserdata/ryan.gerleve.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassics.xcworkspace/xcuserdata/ryan.gerleve.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DoomClassics.xcworkspace/xcuserdata/ryan.gerleve.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/DoomClassics.xcworkspace/xcuserdata/ryan.gerleve.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/README.txt -------------------------------------------------------------------------------- /common/SDL_shim/SDL_Mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/SDL_shim/SDL_Mixer.h -------------------------------------------------------------------------------- /common/SDL_shim/ios/SDL_Mixer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/SDL_shim/ios/SDL_Mixer.m -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/Android.mk: -------------------------------------------------------------------------------- 1 | include $(all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/EASGlue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/EASGlue.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/EASGlue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/EASGlue.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/NOTICE -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/ThirdPartyProject.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/ThirdPartyProject.prop -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/Makefile -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/bin/arm-fm-22k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/bin/arm-fm-22k -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/arm-fm-22k.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/arm-fm-22k.mak -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_build.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_chorus.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_config.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_config.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_debugmsgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_debugmsgs.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_host.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_hostmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_hostmm.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_main.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_report.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_report.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_reverb.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_types.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_wave.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/host_src/eas_wave.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib/libarm-fm-22k.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib/libarm-fm-22k.a -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/arm-fm-22k_lib.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/arm-fm-22k_lib.mak -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_audioconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_audioconst.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_chorus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_chorus.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_chorusdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_chorusdata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_chorusdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_chorusdata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_ctype.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_data.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_data.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_effects.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_fmengine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_fmengine.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_fmengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_fmengine.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_fmsndlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_fmsndlib.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_fmsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_fmsynth.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_fmsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_fmsynth.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_fmtables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_fmtables.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_ima_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_ima_tables.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_imaadpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_imaadpcm.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_imelody.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_imelody.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_imelodydata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_imelodydata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_imelodydata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_imelodydata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_math.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_math.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_midi.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_midi.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_midictrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_midictrl.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_mididata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_mididata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_miditypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_miditypes.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_mixbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_mixbuf.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_mixer.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_mixer.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_ota.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_otadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_otadata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_otadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_otadata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_pan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_pan.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_pan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_pan.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_parser.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_pcm.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_pcm.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_pcmdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_pcmdata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_pcmdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_pcmdata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_public.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_public.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_reverb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_reverb.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_reverbdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_reverbdata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_reverbdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_reverbdata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_rtttl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_rtttl.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_rtttldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_rtttldata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_rtttldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_rtttldata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_smf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_smf.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_smf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_smf.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_smfdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_smfdata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_smfdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_smfdata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_sndlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_sndlib.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_synth.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_synth_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_synth_protos.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_synthcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_synthcfg.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_vm_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_vm_protos.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_voicemgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_voicemgt.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_wavefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_wavefile.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_wavefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_wavefile.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_wavefiledata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-fm-22k/lib_src/eas_wavefiledata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/Makefile -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/bin/arm-hybrid-22k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/bin/arm-hybrid-22k -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/arm-hybrid-22k.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/arm-hybrid-22k.mak -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_build.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_chorus.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_config.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_config.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_debugmsgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_debugmsgs.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_host.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_hostmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_hostmm.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_main.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_report.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_report.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_reverb.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_types.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_wave.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/host_src/eas_wave.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib/libarm-hybrid-22k.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib/libarm-hybrid-22k.a -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/ARM-E_filter_gnu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/ARM-E_filter_gnu.s -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/ARM-E_interpolate_loop_gnu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/ARM-E_interpolate_loop_gnu.s -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/ARM-E_interpolate_noloop_gnu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/ARM-E_interpolate_noloop_gnu.s -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/ARM-E_mastergain_gnu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/ARM-E_mastergain_gnu.s -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/ARM-E_voice_gain_gnu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/ARM-E_voice_gain_gnu.s -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/ARM_synth_constants_gnu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/ARM_synth_constants_gnu.inc -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/arm-hybrid-22k_lib.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/arm-hybrid-22k_lib.mak -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_audioconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_audioconst.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_chorus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_chorus.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_chorusdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_chorusdata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_chorusdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_chorusdata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_ctype.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_data.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_data.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_effects.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_fmengine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_fmengine.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_fmengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_fmengine.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_fmsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_fmsynth.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_fmsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_fmsynth.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_fmtables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_fmtables.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_ima_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_ima_tables.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_imaadpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_imaadpcm.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_imelody.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_imelody.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_imelodydata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_imelodydata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_imelodydata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_imelodydata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_math.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_math.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_midi.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_midi.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_midictrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_midictrl.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_mididata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_mididata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_miditypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_miditypes.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_mixbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_mixbuf.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_mixer.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_mixer.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_ota.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_otadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_otadata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_otadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_otadata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_pan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_pan.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_pan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_pan.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_parser.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_pcm.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_pcm.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_pcmdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_pcmdata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_pcmdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_pcmdata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_public.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_public.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_reverb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_reverb.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_reverbdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_reverbdata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_reverbdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_reverbdata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_rtttl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_rtttl.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_rtttldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_rtttldata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_rtttldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_rtttldata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_smf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_smf.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_smf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_smf.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_smfdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_smfdata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_smfdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_smfdata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_sndlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_sndlib.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_synth.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_synth_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_synth_protos.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_synthcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_synthcfg.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_vm_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_vm_protos.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_voicemgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_voicemgt.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wavefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wavefile.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wavefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wavefile.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wavefiledata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wavefiledata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wt_IPC_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wt_IPC_frame.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wtengine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wtengine.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wtengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wtengine.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wtsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wtsynth.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wtsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/eas_wtsynth.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/hybrid_22khz_mcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-hybrid-22k/lib_src/hybrid_22khz_mcu.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/Android.mk -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/bin/arm-wt-22k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/bin/arm-wt-22k -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/arm-wt-22k.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/arm-wt-22k.mak -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_build.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_chorus.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_config.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_config.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_debugmsgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_debugmsgs.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_host.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_hostmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_hostmm.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_main.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_report.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_report.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_reverb.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_types.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_wave.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/eas_wave.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/host_src/jet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/host_src/jet.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLIb.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLIb.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLib.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLib.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLibVst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/EASLibVst.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/README.txt -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/eas_host_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/eas_host_debug.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/eastestv37.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/eastestv37.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/easwt_vst_lib.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/easwt_vst_lib.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/wt_44khz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/jetcreator_lib_src/darwin-x86/wt_44khz.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib/libarm-wt-22k.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib/libarm-wt-22k.a -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/ARM-E_filter_gnu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/ARM-E_filter_gnu.s -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/ARM-E_interpolate_loop_gnu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/ARM-E_interpolate_loop_gnu.s -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/ARM-E_interpolate_noloop_gnu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/ARM-E_interpolate_noloop_gnu.s -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/ARM-E_mastergain_gnu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/ARM-E_mastergain_gnu.s -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/ARM-E_voice_gain_gnu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/ARM-E_voice_gain_gnu.s -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/ARM_synth_constants_gnu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/ARM_synth_constants_gnu.inc -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/arm-wt-22k_lib.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/arm-wt-22k_lib.mak -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/dls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/dls.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/dls2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/dls2.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_audioconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_audioconst.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_chorus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_chorus.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_chorusdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_chorusdata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_chorusdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_chorusdata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_ctype.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_data.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_data.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_dlssynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_dlssynth.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_dlssynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_dlssynth.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_effects.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_flog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_flog.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_ima_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_ima_tables.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_imaadpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_imaadpcm.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_imelody.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_imelody.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_imelodydata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_imelodydata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_imelodydata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_imelodydata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_math.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_math.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_mdls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_mdls.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_mdls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_mdls.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_midi.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_midi.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_midictrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_midictrl.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_mididata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_mididata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_miditypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_miditypes.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_mixbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_mixbuf.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_mixer.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_mixer.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_ota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_ota.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_otadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_otadata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_otadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_otadata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_pan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_pan.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_pan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_pan.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_parser.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_pcm.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_pcm.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_pcmdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_pcmdata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_pcmdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_pcmdata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_public.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_public.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_reverb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_reverb.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_reverbdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_reverbdata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_reverbdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_reverbdata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_rtttl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_rtttl.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_rtttldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_rtttldata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_rtttldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_rtttldata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_smf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_smf.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_smf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_smf.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_smfdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_smfdata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_smfdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_smfdata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_sndlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_sndlib.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_synth.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_synth_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_synth_protos.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_synthcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_synthcfg.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_tcdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_tcdata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_tcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_tcdata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_tonecontrol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_tonecontrol.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_vm_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_vm_protos.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_voicemgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_voicemgt.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wavefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wavefile.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wavefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wavefile.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wavefiledata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wavefiledata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wt_IPC_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wt_IPC_frame.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wtengine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wtengine.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wtengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wtengine.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wtsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wtsynth.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wtsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_wtsynth.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_xmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_xmf.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_xmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_xmf.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_xmfdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_xmfdata.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_xmfdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/eas_xmfdata.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/jet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/jet.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/jet_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/jet_data.h -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/lib_src/wt_22khz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/lib_src/wt_22khz.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/misc/eas_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/misc/eas_host.c -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/vectors/Leadsol.mxmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/vectors/Leadsol.mxmf -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/vectors/Leadsol_out.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/vectors/Leadsol_out.wav -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/vectors/WAVEtest.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/vectors/WAVEtest.wav -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/vectors/WAVEtest_out.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/vectors/WAVEtest_out.wav -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/vectors/abba.imy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/vectors/abba.imy -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/vectors/abba_out.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/vectors/abba_out.wav -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/vectors/ants.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/vectors/ants.mid -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/vectors/ants_out.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/vectors/ants_out.wav -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/vectors/greensleeves.rtttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/vectors/greensleeves.rtttl -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/vectors/greensleeves_out.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/vectors/greensleeves_out.wav -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/vectors/test.ota: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/vectors/test.ota -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/arm-wt-22k/vectors/test_out.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/arm-wt-22k/vectors/test_out.wav -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/EASLibrary3_5.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/EASLibrary3_5.odt -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/EASLibrary3_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/EASLibrary3_5.pdf -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/EAS_API_Reference.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/EAS_API_Reference.odt -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/EAS_API_Reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/EAS_API_Reference.pdf -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/EAS_Library_Integration_Guide.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/EAS_Library_Integration_Guide.odt -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/EAS_Library_Integration_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/EAS_Library_Integration_Guide.pdf -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines.html -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/header.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/header.htm -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image001.jpg -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image002.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image002.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image004.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image004.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image006.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image006.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image008.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image008.gif -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image010.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image010.gif -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image011.png -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image012.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image012.gif -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image013.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image013.gif -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image014.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image014.gif -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image015.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Authoring_Guidelines_files/image015.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual.html -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/header.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/header.htm -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image001.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image001.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image002.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image002.gif -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image003.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image003.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image004.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image004.gif -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image005.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image005.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image006.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image006.gif -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image007.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image007.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image008.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image008.gif -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image009.png -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image010.jpg -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image011.png -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image012.jpg -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image013.png -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image014.jpg -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image015.png -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image016.jpg -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image017.png -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image018.jpg -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image019.png -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image020.jpg -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image021.png -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image022.jpg -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image023.png -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image024.jpg -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image025.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image025.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image026.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image026.gif -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image027.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image027.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image028.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image028.gif -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image029.jpg -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image030.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image030.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image031.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image031.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image032.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image032.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image033.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image033.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image034.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image034.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image035.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Creator_User_Manual_files/image035.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual.html -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual.odt -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual.pdf -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/header.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/header.htm -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image002.png -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image004.png -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image006.png -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image008.png -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image010.png -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image012.png -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image013.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image013.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image014.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image014.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image015.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image015.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image016.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image016.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image017.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image017.emz -------------------------------------------------------------------------------- /common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image018.emz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/embeddedaudiosynthesis/docs/JET_Programming_Manual_files/image018.emz -------------------------------------------------------------------------------- /common/idmobilelib/ios/AnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/AnimatedImage.h -------------------------------------------------------------------------------- /common/idmobilelib/ios/AnimatedImage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/AnimatedImage.mm -------------------------------------------------------------------------------- /common/idmobilelib/ios/Carousel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/Carousel.h -------------------------------------------------------------------------------- /common/idmobilelib/ios/Carousel.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/Carousel.mm -------------------------------------------------------------------------------- /common/idmobilelib/ios/GameCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/GameCenter.h -------------------------------------------------------------------------------- /common/idmobilelib/ios/GameCenter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/GameCenter.mm -------------------------------------------------------------------------------- /common/idmobilelib/ios/InAppStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/InAppStore.h -------------------------------------------------------------------------------- /common/idmobilelib/ios/InAppStore.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/InAppStore.mm -------------------------------------------------------------------------------- /common/idmobilelib/ios/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/Label.h -------------------------------------------------------------------------------- /common/idmobilelib/ios/Label.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/Label.mm -------------------------------------------------------------------------------- /common/idmobilelib/ios/LabelButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/LabelButton.h -------------------------------------------------------------------------------- /common/idmobilelib/ios/LabelButton.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/LabelButton.mm -------------------------------------------------------------------------------- /common/idmobilelib/ios/Localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/Localization.h -------------------------------------------------------------------------------- /common/idmobilelib/ios/Localization.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/Localization.mm -------------------------------------------------------------------------------- /common/idmobilelib/ios/LocalizationObjectiveC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/LocalizationObjectiveC.h -------------------------------------------------------------------------------- /common/idmobilelib/ios/RenderContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/RenderContext.h -------------------------------------------------------------------------------- /common/idmobilelib/ios/RenderContext.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/RenderContext.mm -------------------------------------------------------------------------------- /common/idmobilelib/ios/Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/Slider.h -------------------------------------------------------------------------------- /common/idmobilelib/ios/Slider.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/Slider.mm -------------------------------------------------------------------------------- /common/idmobilelib/ios/Switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/Switch.h -------------------------------------------------------------------------------- /common/idmobilelib/ios/Switch.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/Switch.mm -------------------------------------------------------------------------------- /common/idmobilelib/ios/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/View.h -------------------------------------------------------------------------------- /common/idmobilelib/ios/View.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/View.mm -------------------------------------------------------------------------------- /common/idmobilelib/ios/idmobilelib.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/idmobilelib.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /common/idmobilelib/ios/idmobilelib.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/idmobilelib.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /common/idmobilelib/ios/idmobilelib.xcodeproj/xcshareddata/xcschemes/idmobilelib.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/idmobilelib.xcodeproj/xcshareddata/xcschemes/idmobilelib.xcscheme -------------------------------------------------------------------------------- /common/idmobilelib/ios/ios_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/ios_interface.h -------------------------------------------------------------------------------- /common/idmobilelib/ios/ios_interface.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/ios_interface.mm -------------------------------------------------------------------------------- /common/idmobilelib/ios/objectivec_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/objectivec_utilities.h -------------------------------------------------------------------------------- /common/idmobilelib/ios/objectivec_utilities.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/ios/objectivec_utilities.mm -------------------------------------------------------------------------------- /common/idmobilelib/sys/sys_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/idmobilelib/sys/sys_defines.h -------------------------------------------------------------------------------- /common/ios/EmbeddedAudioSynthesis/EmbeddedAudioSynthesis.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/EmbeddedAudioSynthesis/EmbeddedAudioSynthesis.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /common/ios/doomengine.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /common/ios/doomengine.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /common/ios/doomengine.xcodeproj/xcshareddata/xcschemes/doomengine.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine.xcodeproj/xcshareddata/xcschemes/doomengine.xcscheme -------------------------------------------------------------------------------- /common/ios/doomengine.xcodeproj/xcuserdata/Farrand.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine.xcodeproj/xcuserdata/Farrand.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /common/ios/doomengine.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /common/ios/doomengine.xcodeproj/xcuserdata/ryan.gerleve.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine.xcodeproj/xcuserdata/ryan.gerleve.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /common/ios/doomengine/BackgroundMusic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/BackgroundMusic.cpp -------------------------------------------------------------------------------- /common/ios/doomengine/DoomGameCenterMatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/DoomGameCenterMatch.cpp -------------------------------------------------------------------------------- /common/ios/doomengine/DoomGameCenterMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/DoomGameCenterMatch.h -------------------------------------------------------------------------------- /common/ios/doomengine/EAGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/EAGLView.h -------------------------------------------------------------------------------- /common/ios/doomengine/EAGLView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/EAGLView.m -------------------------------------------------------------------------------- /common/ios/doomengine/SoundEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/SoundEngine.cpp -------------------------------------------------------------------------------- /common/ios/doomengine/SoundEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/SoundEngine.h -------------------------------------------------------------------------------- /common/ios/doomengine/arialGlyphRects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/arialGlyphRects.h -------------------------------------------------------------------------------- /common/ios/doomengine/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/cmd.c -------------------------------------------------------------------------------- /common/ios/doomengine/cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/cvar.c -------------------------------------------------------------------------------- /common/ios/doomengine/cvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/cvar.h -------------------------------------------------------------------------------- /common/ios/doomengine/doomiphone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/doomiphone.h -------------------------------------------------------------------------------- /common/ios/doomengine/gles_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/gles_glue.c -------------------------------------------------------------------------------- /common/ios/doomengine/gles_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/gles_glue.h -------------------------------------------------------------------------------- /common/ios/doomengine/hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/hud.c -------------------------------------------------------------------------------- /common/ios/doomengine/ipak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/ipak.c -------------------------------------------------------------------------------- /common/ios/doomengine/ipak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/ipak.h -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_async.cpp -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_common.h -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_common.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_common.mm -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_delegate.h -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_delegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_delegate.mm -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_doom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_doom.h -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_email.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_email.h -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_email.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_email.m -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_glViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_glViewController.h -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_glViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_glViewController.mm -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_loop.c -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_main.c -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_mapSelect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_mapSelect.c -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_net.c -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_qgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_qgl.h -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_qgl_enumerants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_qgl_enumerants.h -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_render.c -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_sound.c -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_start.cpp -------------------------------------------------------------------------------- /common/ios/doomengine/iphone_sys.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/iphone_sys.mm -------------------------------------------------------------------------------- /common/ios/doomengine/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/misc.c -------------------------------------------------------------------------------- /common/ios/doomengine/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/misc.h -------------------------------------------------------------------------------- /common/ios/doomengine/prboomInterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/doomengine/prboomInterface.c -------------------------------------------------------------------------------- /common/ios/prboom/prboom.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/prboom/prboom.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /common/ios/prboom/prboom.xcodeproj/xcuserdata/Farrand.xcuserdatad/xcschemes/prboom.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/prboom/prboom.xcodeproj/xcuserdata/Farrand.xcuserdatad/xcschemes/prboom.xcscheme -------------------------------------------------------------------------------- /common/ios/prboom/prboom.xcodeproj/xcuserdata/Farrand.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/prboom/prboom.xcodeproj/xcuserdata/Farrand.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /common/ios/prboom/prboom.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/prboom.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/prboom/prboom.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/prboom.xcscheme -------------------------------------------------------------------------------- /common/ios/prboom/prboom.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/prboom/prboom.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /common/ios/prboom/prboom.xcodeproj/xcuserdata/ryan.gerleve.xcuserdatad/xcschemes/prboom.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/prboom/prboom.xcodeproj/xcuserdata/ryan.gerleve.xcuserdatad/xcschemes/prboom.xcscheme -------------------------------------------------------------------------------- /common/ios/prboom/prboom.xcodeproj/xcuserdata/ryan.gerleve.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/prboom/prboom.xcodeproj/xcuserdata/ryan.gerleve.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /common/ios/tess/tess.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/tess/tess.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /common/ios/tess/tess.xcodeproj/xcuserdata/Farrand.xcuserdatad/xcschemes/tess.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/tess/tess.xcodeproj/xcuserdata/Farrand.xcuserdatad/xcschemes/tess.xcscheme -------------------------------------------------------------------------------- /common/ios/tess/tess.xcodeproj/xcuserdata/Farrand.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/tess/tess.xcodeproj/xcuserdata/Farrand.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /common/ios/tess/tess.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/tess.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/tess/tess.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/tess.xcscheme -------------------------------------------------------------------------------- /common/ios/tess/tess.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/tess/tess.xcodeproj/xcuserdata/jeff.farrand.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /common/ios/tess/tess.xcodeproj/xcuserdata/ryan.gerleve.xcuserdatad/xcschemes/tess.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/tess/tess.xcodeproj/xcuserdata/ryan.gerleve.xcuserdatad/xcschemes/tess.xcscheme -------------------------------------------------------------------------------- /common/ios/tess/tess.xcodeproj/xcuserdata/ryan.gerleve.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/ios/tess/tess.xcodeproj/xcuserdata/ryan.gerleve.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /common/libtess/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/README -------------------------------------------------------------------------------- /common/libtess/alg-outline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/alg-outline -------------------------------------------------------------------------------- /common/libtess/dict-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/dict-list.h -------------------------------------------------------------------------------- /common/libtess/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/dict.c -------------------------------------------------------------------------------- /common/libtess/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/dict.h -------------------------------------------------------------------------------- /common/libtess/geom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/geom.c -------------------------------------------------------------------------------- /common/libtess/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/geom.h -------------------------------------------------------------------------------- /common/libtess/memalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/memalloc.c -------------------------------------------------------------------------------- /common/libtess/memalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/memalloc.h -------------------------------------------------------------------------------- /common/libtess/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/mesh.c -------------------------------------------------------------------------------- /common/libtess/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/mesh.h -------------------------------------------------------------------------------- /common/libtess/normal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/normal.c -------------------------------------------------------------------------------- /common/libtess/normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/normal.h -------------------------------------------------------------------------------- /common/libtess/priorityq-heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/priorityq-heap.c -------------------------------------------------------------------------------- /common/libtess/priorityq-heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/priorityq-heap.h -------------------------------------------------------------------------------- /common/libtess/priorityq-sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/priorityq-sort.h -------------------------------------------------------------------------------- /common/libtess/priorityq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/priorityq.c -------------------------------------------------------------------------------- /common/libtess/priorityq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/priorityq.h -------------------------------------------------------------------------------- /common/libtess/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/render.c -------------------------------------------------------------------------------- /common/libtess/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/render.h -------------------------------------------------------------------------------- /common/libtess/sweep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/sweep.c -------------------------------------------------------------------------------- /common/libtess/sweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/sweep.h -------------------------------------------------------------------------------- /common/libtess/tess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/tess.c -------------------------------------------------------------------------------- /common/libtess/tess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/tess.h -------------------------------------------------------------------------------- /common/libtess/tessmono.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/tessmono.c -------------------------------------------------------------------------------- /common/libtess/tessmono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/libtess/tessmono.h -------------------------------------------------------------------------------- /common/prboom/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/Makefile.am -------------------------------------------------------------------------------- /common/prboom/SDL/i_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/SDL/i_sound.c -------------------------------------------------------------------------------- /common/prboom/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/SDL_opengl.h -------------------------------------------------------------------------------- /common/prboom/am_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/am_map.c -------------------------------------------------------------------------------- /common/prboom/am_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/am_map.h -------------------------------------------------------------------------------- /common/prboom/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/config.h -------------------------------------------------------------------------------- /common/prboom/d_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/d_client.c -------------------------------------------------------------------------------- /common/prboom/d_deh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/d_deh.c -------------------------------------------------------------------------------- /common/prboom/d_deh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/d_deh.h -------------------------------------------------------------------------------- /common/prboom/d_englsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/d_englsh.h -------------------------------------------------------------------------------- /common/prboom/d_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/d_event.h -------------------------------------------------------------------------------- /common/prboom/d_ipxgate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/d_ipxgate.c -------------------------------------------------------------------------------- /common/prboom/d_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/d_items.c -------------------------------------------------------------------------------- /common/prboom/d_items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/d_items.h -------------------------------------------------------------------------------- /common/prboom/d_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/d_main.c -------------------------------------------------------------------------------- /common/prboom/d_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/d_main.h -------------------------------------------------------------------------------- /common/prboom/d_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/d_net.h -------------------------------------------------------------------------------- /common/prboom/d_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/d_player.h -------------------------------------------------------------------------------- /common/prboom/d_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/d_server.c -------------------------------------------------------------------------------- /common/prboom/d_think.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/d_think.h -------------------------------------------------------------------------------- /common/prboom/d_ticcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/d_ticcmd.h -------------------------------------------------------------------------------- /common/prboom/doomdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/doomdata.h -------------------------------------------------------------------------------- /common/prboom/doomdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/doomdef.c -------------------------------------------------------------------------------- /common/prboom/doomdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/doomdef.h -------------------------------------------------------------------------------- /common/prboom/doomstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/doomstat.c -------------------------------------------------------------------------------- /common/prboom/doomstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/doomstat.h -------------------------------------------------------------------------------- /common/prboom/doomtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/doomtype.h -------------------------------------------------------------------------------- /common/prboom/dstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/dstrings.c -------------------------------------------------------------------------------- /common/prboom/dstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/dstrings.h -------------------------------------------------------------------------------- /common/prboom/f_finale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/f_finale.c -------------------------------------------------------------------------------- /common/prboom/f_finale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/f_finale.h -------------------------------------------------------------------------------- /common/prboom/f_wipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/f_wipe.c -------------------------------------------------------------------------------- /common/prboom/f_wipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/f_wipe.h -------------------------------------------------------------------------------- /common/prboom/g_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/g_game.c -------------------------------------------------------------------------------- /common/prboom/g_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/g_game.h -------------------------------------------------------------------------------- /common/prboom/gl_intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/gl_intern.h -------------------------------------------------------------------------------- /common/prboom/gl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/gl_main.c -------------------------------------------------------------------------------- /common/prboom/gl_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/gl_struct.h -------------------------------------------------------------------------------- /common/prboom/gl_texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/gl_texture.c -------------------------------------------------------------------------------- /common/prboom/hu_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/hu_lib.c -------------------------------------------------------------------------------- /common/prboom/hu_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/hu_lib.h -------------------------------------------------------------------------------- /common/prboom/hu_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/hu_stuff.c -------------------------------------------------------------------------------- /common/prboom/hu_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/hu_stuff.h -------------------------------------------------------------------------------- /common/prboom/i_joy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/i_joy.h -------------------------------------------------------------------------------- /common/prboom/i_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/i_main.h -------------------------------------------------------------------------------- /common/prboom/i_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/i_network.h -------------------------------------------------------------------------------- /common/prboom/i_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/i_sound.h -------------------------------------------------------------------------------- /common/prboom/i_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/i_system.h -------------------------------------------------------------------------------- /common/prboom/i_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/i_video.h -------------------------------------------------------------------------------- /common/prboom/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/info.c -------------------------------------------------------------------------------- /common/prboom/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/info.h -------------------------------------------------------------------------------- /common/prboom/lprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/lprintf.c -------------------------------------------------------------------------------- /common/prboom/lprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/lprintf.h -------------------------------------------------------------------------------- /common/prboom/m_argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/m_argv.c -------------------------------------------------------------------------------- /common/prboom/m_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/m_argv.h -------------------------------------------------------------------------------- /common/prboom/m_bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/m_bbox.c -------------------------------------------------------------------------------- /common/prboom/m_bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/m_bbox.h -------------------------------------------------------------------------------- /common/prboom/m_cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/m_cheat.c -------------------------------------------------------------------------------- /common/prboom/m_cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/m_cheat.h -------------------------------------------------------------------------------- /common/prboom/m_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/m_fixed.h -------------------------------------------------------------------------------- /common/prboom/m_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/m_menu.c -------------------------------------------------------------------------------- /common/prboom/m_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/m_menu.h -------------------------------------------------------------------------------- /common/prboom/m_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/m_misc.c -------------------------------------------------------------------------------- /common/prboom/m_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/m_misc.h -------------------------------------------------------------------------------- /common/prboom/m_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/m_random.c -------------------------------------------------------------------------------- /common/prboom/m_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/m_random.h -------------------------------------------------------------------------------- /common/prboom/m_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/m_swap.h -------------------------------------------------------------------------------- /common/prboom/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/md5.c -------------------------------------------------------------------------------- /common/prboom/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/md5.h -------------------------------------------------------------------------------- /common/prboom/mmus2mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/mmus2mid.c -------------------------------------------------------------------------------- /common/prboom/mmus2mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/mmus2mid.h -------------------------------------------------------------------------------- /common/prboom/p_ceilng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_ceilng.c -------------------------------------------------------------------------------- /common/prboom/p_checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_checksum.c -------------------------------------------------------------------------------- /common/prboom/p_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_checksum.h -------------------------------------------------------------------------------- /common/prboom/p_doors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_doors.c -------------------------------------------------------------------------------- /common/prboom/p_enemy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_enemy.c -------------------------------------------------------------------------------- /common/prboom/p_enemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_enemy.h -------------------------------------------------------------------------------- /common/prboom/p_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_floor.c -------------------------------------------------------------------------------- /common/prboom/p_genlin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_genlin.c -------------------------------------------------------------------------------- /common/prboom/p_inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_inter.c -------------------------------------------------------------------------------- /common/prboom/p_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_inter.h -------------------------------------------------------------------------------- /common/prboom/p_lights.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_lights.c -------------------------------------------------------------------------------- /common/prboom/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_map.c -------------------------------------------------------------------------------- /common/prboom/p_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_map.h -------------------------------------------------------------------------------- /common/prboom/p_maputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_maputl.c -------------------------------------------------------------------------------- /common/prboom/p_maputl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_maputl.h -------------------------------------------------------------------------------- /common/prboom/p_mobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_mobj.c -------------------------------------------------------------------------------- /common/prboom/p_mobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_mobj.h -------------------------------------------------------------------------------- /common/prboom/p_plats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_plats.c -------------------------------------------------------------------------------- /common/prboom/p_pspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_pspr.c -------------------------------------------------------------------------------- /common/prboom/p_pspr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_pspr.h -------------------------------------------------------------------------------- /common/prboom/p_saveg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_saveg.c -------------------------------------------------------------------------------- /common/prboom/p_saveg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_saveg.h -------------------------------------------------------------------------------- /common/prboom/p_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_setup.c -------------------------------------------------------------------------------- /common/prboom/p_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_setup.h -------------------------------------------------------------------------------- /common/prboom/p_sight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_sight.c -------------------------------------------------------------------------------- /common/prboom/p_spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_spec.c -------------------------------------------------------------------------------- /common/prboom/p_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_spec.h -------------------------------------------------------------------------------- /common/prboom/p_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_switch.c -------------------------------------------------------------------------------- /common/prboom/p_telept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_telept.c -------------------------------------------------------------------------------- /common/prboom/p_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_tick.c -------------------------------------------------------------------------------- /common/prboom/p_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_tick.h -------------------------------------------------------------------------------- /common/prboom/p_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_user.c -------------------------------------------------------------------------------- /common/prboom/p_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/p_user.h -------------------------------------------------------------------------------- /common/prboom/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/protocol.h -------------------------------------------------------------------------------- /common/prboom/r_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_bsp.c -------------------------------------------------------------------------------- /common/prboom/r_bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_bsp.h -------------------------------------------------------------------------------- /common/prboom/r_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_data.c -------------------------------------------------------------------------------- /common/prboom/r_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_data.h -------------------------------------------------------------------------------- /common/prboom/r_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_defs.h -------------------------------------------------------------------------------- /common/prboom/r_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_demo.c -------------------------------------------------------------------------------- /common/prboom/r_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_demo.h -------------------------------------------------------------------------------- /common/prboom/r_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_draw.c -------------------------------------------------------------------------------- /common/prboom/r_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_draw.h -------------------------------------------------------------------------------- /common/prboom/r_drawcolpipeline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_drawcolpipeline.inl -------------------------------------------------------------------------------- /common/prboom/r_drawcolumn.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_drawcolumn.inl -------------------------------------------------------------------------------- /common/prboom/r_drawflush.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_drawflush.inl -------------------------------------------------------------------------------- /common/prboom/r_drawspan.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_drawspan.inl -------------------------------------------------------------------------------- /common/prboom/r_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_filter.c -------------------------------------------------------------------------------- /common/prboom/r_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_filter.h -------------------------------------------------------------------------------- /common/prboom/r_fps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_fps.c -------------------------------------------------------------------------------- /common/prboom/r_fps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_fps.h -------------------------------------------------------------------------------- /common/prboom/r_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_main.c -------------------------------------------------------------------------------- /common/prboom/r_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_main.h -------------------------------------------------------------------------------- /common/prboom/r_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_patch.c -------------------------------------------------------------------------------- /common/prboom/r_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_patch.h -------------------------------------------------------------------------------- /common/prboom/r_plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_plane.c -------------------------------------------------------------------------------- /common/prboom/r_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_plane.h -------------------------------------------------------------------------------- /common/prboom/r_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_segs.c -------------------------------------------------------------------------------- /common/prboom/r_segs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_segs.h -------------------------------------------------------------------------------- /common/prboom/r_sky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_sky.c -------------------------------------------------------------------------------- /common/prboom/r_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_sky.h -------------------------------------------------------------------------------- /common/prboom/r_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_state.h -------------------------------------------------------------------------------- /common/prboom/r_things.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_things.c -------------------------------------------------------------------------------- /common/prboom/r_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/r_things.h -------------------------------------------------------------------------------- /common/prboom/s_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/s_sound.c -------------------------------------------------------------------------------- /common/prboom/s_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/s_sound.h -------------------------------------------------------------------------------- /common/prboom/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/sounds.c -------------------------------------------------------------------------------- /common/prboom/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/sounds.h -------------------------------------------------------------------------------- /common/prboom/st_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/st_lib.c -------------------------------------------------------------------------------- /common/prboom/st_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/st_lib.h -------------------------------------------------------------------------------- /common/prboom/st_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/st_stuff.c -------------------------------------------------------------------------------- /common/prboom/st_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/st_stuff.h -------------------------------------------------------------------------------- /common/prboom/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/tables.c -------------------------------------------------------------------------------- /common/prboom/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/tables.h -------------------------------------------------------------------------------- /common/prboom/v_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/v_video.c -------------------------------------------------------------------------------- /common/prboom/v_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/v_video.h -------------------------------------------------------------------------------- /common/prboom/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/version.c -------------------------------------------------------------------------------- /common/prboom/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/version.h -------------------------------------------------------------------------------- /common/prboom/w_memcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/w_memcache.c -------------------------------------------------------------------------------- /common/prboom/w_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/w_mmap.c -------------------------------------------------------------------------------- /common/prboom/w_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/w_wad.c -------------------------------------------------------------------------------- /common/prboom/w_wad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/w_wad.h -------------------------------------------------------------------------------- /common/prboom/wi_stuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/wi_stuff.c -------------------------------------------------------------------------------- /common/prboom/wi_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/wi_stuff.h -------------------------------------------------------------------------------- /common/prboom/z_bmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/z_bmalloc.c -------------------------------------------------------------------------------- /common/prboom/z_bmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/z_bmalloc.h -------------------------------------------------------------------------------- /common/prboom/z_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/z_zone.c -------------------------------------------------------------------------------- /common/prboom/z_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/common/prboom/z_zone.h -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/gpl.txt -------------------------------------------------------------------------------- /readme_iDoom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/historicalsource/doomios2/HEAD/readme_iDoom.txt --------------------------------------------------------------------------------