├── .DS_Store ├── AppIcons ├── Icon-iPad-29.png ├── Icon-iPad-29@2x.png ├── Icon-iPad-40.png ├── Icon-iPad-40@2x.png ├── Icon-iPad-50.png ├── Icon-iPad-50@2x.png ├── Icon-iPad-72.png ├── Icon-iPad-72@2x.png ├── Icon-iPad-76.png ├── Icon-iPad-76@2x.png ├── Icon-iPhone-29.png ├── Icon-iPhone-29@2x.png ├── Icon-iPhone-29@3x.png ├── Icon-iPhone-40@2x.png ├── Icon-iPhone-40@3x.png ├── Icon-iPhone-57.png ├── Icon-iPhone-57@2x.png ├── Icon-iPhone-60@2x.png ├── Icon-iPhone-60@3x.png ├── iTunesArtwork └── iTunesArtwork@2x ├── Default-568h@2x.png ├── LICENSE ├── MongooseDaemon ├── LICENSE ├── MongooseDaemon.h ├── MongooseDaemon.m ├── README.rdoc ├── mongoose.c └── mongoose.h ├── README.md ├── SDL ├── .hgignore ├── .hgtags ├── .indent.pro ├── BUGS ├── Borland.html ├── Borland.zip ├── COPYING ├── CREDITS ├── INSTALL ├── Makefile.ds ├── Makefile.in ├── Makefile.minimal ├── Makefile.pandora ├── Makefile.wiz ├── NOTES ├── README ├── README-SDL.txt ├── README.BeOS ├── README.DirectFB ├── README.HG ├── README.MacOSX ├── README.PS3 ├── README.Porting ├── README.QNX ├── README.RISCOS ├── README.Watcom ├── README.WinCE ├── README.iphoneos ├── README.pandora ├── SDL.spec.in ├── acinclude │ ├── ac_check_define.m4 │ ├── alsa.m4 │ ├── esd.m4 │ ├── libtool.m4 │ ├── ltdl.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 ├── aclocal.m4 ├── autogen.sh ├── build-scripts │ ├── config.guess │ ├── config.sub │ ├── fatbuild.sh │ ├── install-sh │ ├── ltmain.sh │ ├── mkinstalldirs │ ├── showrev.sh │ ├── snapshot.sh │ ├── strip_fPIC.sh │ └── updaterev.sh ├── configure ├── configure.in ├── include │ ├── SDL.h │ ├── SDL_assert.h │ ├── SDL_atomic.h │ ├── SDL_audio.h │ ├── SDL_compat.h │ ├── SDL_config.h │ ├── SDL_config.h.default │ ├── SDL_config.h.generated │ ├── SDL_config.h.in │ ├── SDL_config_iphoneos.h │ ├── SDL_config_macosx.h │ ├── SDL_config_minimal.h │ ├── SDL_config_nintendods.h │ ├── SDL_config_pandora.h │ ├── SDL_config_win32.h │ ├── SDL_config_wiz.h │ ├── SDL_copying.h │ ├── SDL_cpuinfo.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_haptic.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keysym.h │ ├── SDL_loadso.h │ ├── SDL_main.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_opengles.h │ ├── SDL_pixels.h │ ├── SDL_platform.h │ ├── SDL_power.h │ ├── SDL_quit.h │ ├── SDL_rect.h │ ├── SDL_revision.h │ ├── SDL_rwops.h │ ├── SDL_scancode.h │ ├── SDL_stdinc.h │ ├── SDL_surface.h │ ├── SDL_syswm.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── begin_code.h │ ├── close_code.h │ └── doxyfile ├── sdl-config.in ├── sdl.m4 ├── sdl.pc.in └── src │ ├── SDL.c │ ├── SDL_assert.c │ ├── SDL_compat.c │ ├── SDL_error.c │ ├── SDL_error_c.h │ ├── SDL_fatal.c │ ├── SDL_fatal.h │ ├── atomic │ ├── dummy │ │ └── SDL_atomic.c │ ├── linux │ │ └── SDL_atomic.c │ ├── macosx │ │ └── SDL_atomic.c │ ├── qnx │ │ └── SDL_atomic.c │ └── win32 │ │ └── SDL_atomic.c │ ├── audio │ ├── SDL_audio.c │ ├── SDL_audio_c.h │ ├── SDL_audiocvt.c │ ├── SDL_audiodev.c │ ├── SDL_audiodev_c.h │ ├── SDL_audiomem.h │ ├── SDL_audiotypecvt.c │ ├── SDL_mixer.c │ ├── SDL_mixer_MMX.c │ ├── SDL_mixer_MMX.h │ ├── SDL_mixer_MMX_VC.c │ ├── SDL_mixer_MMX_VC.h │ ├── SDL_mixer_m68k.c │ ├── SDL_mixer_m68k.h │ ├── SDL_sysaudio.h │ ├── SDL_wave.c │ ├── SDL_wave.h │ ├── alsa │ │ ├── SDL_alsa_audio.c │ │ └── SDL_alsa_audio.h │ ├── arts │ │ ├── SDL_artsaudio.c │ │ └── SDL_artsaudio.h │ ├── baudio │ │ ├── SDL_beaudio.cc │ │ └── SDL_beaudio.h │ ├── bsd │ │ ├── SDL_bsdaudio.c │ │ └── SDL_bsdaudio.h │ ├── disk │ │ ├── SDL_diskaudio.c │ │ └── SDL_diskaudio.h │ ├── dma │ │ ├── SDL_dmaaudio.c │ │ └── SDL_dmaaudio.h │ ├── dmedia │ │ ├── SDL_irixaudio.c │ │ └── SDL_irixaudio.h │ ├── dsp │ │ ├── SDL_dspaudio.c │ │ └── SDL_dspaudio.h │ ├── dummy │ │ ├── SDL_dummyaudio.c │ │ └── SDL_dummyaudio.h │ ├── esd │ │ ├── SDL_esdaudio.c │ │ └── SDL_esdaudio.h │ ├── fusionsound │ │ ├── SDL_fsaudio.c │ │ └── SDL_fsaudio.h │ ├── iphoneos │ │ ├── SDL_coreaudio_iphone.c │ │ └── SDL_coreaudio_iphone.h │ ├── macosx │ │ ├── SDL_coreaudio.c │ │ └── SDL_coreaudio.h │ ├── mme │ │ ├── SDL_mmeaudio.c │ │ └── SDL_mmeaudio.h │ ├── nas │ │ ├── SDL_nasaudio.c │ │ └── SDL_nasaudio.h │ ├── nds │ │ ├── SDL_ndsaudio.c │ │ └── SDL_ndsaudio.h │ ├── paudio │ │ ├── SDL_paudio.c │ │ └── SDL_paudio.h │ ├── pulseaudio │ │ ├── SDL_pulseaudio.c │ │ └── SDL_pulseaudio.h │ ├── qsa │ │ ├── SDL_qsa_audio.c │ │ └── SDL_qsa_audio.h │ ├── sdlgenaudiocvt.pl │ ├── sun │ │ ├── SDL_sunaudio.c │ │ └── SDL_sunaudio.h │ ├── ums │ │ ├── SDL_umsaudio.c │ │ └── SDL_umsaudio.h │ ├── windib │ │ ├── SDL_dibaudio.c │ │ └── SDL_dibaudio.h │ └── windx5 │ │ ├── SDL_dx5audio.c │ │ ├── SDL_dx5audio.h │ │ └── directx.h │ ├── cpuinfo │ └── SDL_cpuinfo.c │ ├── events │ ├── SDL_events.c │ ├── SDL_events_c.h │ ├── SDL_keyboard.c │ ├── SDL_keyboard_c.h │ ├── SDL_mouse.c │ ├── SDL_mouse_c.h │ ├── SDL_quit.c │ ├── SDL_sysevents.h │ ├── SDL_windowevents.c │ ├── SDL_windowevents_c.h │ ├── blank_cursor.h │ ├── default_cursor.h │ ├── scancodes_darwin.h │ ├── scancodes_linux.h │ ├── scancodes_win32.h │ └── scancodes_xfree86.h │ ├── file │ └── SDL_rwops.c │ ├── haptic │ ├── SDL_haptic.c │ ├── SDL_syshaptic.h │ ├── darwin │ │ └── SDL_syshaptic.c │ ├── dummy │ │ └── SDL_syshaptic.c │ ├── linux │ │ └── SDL_syshaptic.c │ ├── nds │ │ └── SDL_syshaptic.c │ └── win32 │ │ └── SDL_syshaptic.c │ ├── joystick │ ├── SDL_joystick.c │ ├── SDL_joystick_c.h │ ├── SDL_sysjoystick.h │ ├── beos │ │ └── SDL_bejoystick.cc │ ├── bsd │ │ └── SDL_sysjoystick.c │ ├── darwin │ │ ├── 10.3.9-FIX │ │ │ └── IOHIDLib.h │ │ ├── SDL_sysjoystick.c │ │ └── SDL_sysjoystick_c.h │ ├── dummy │ │ └── SDL_sysjoystick.c │ ├── iphoneos │ │ ├── SDLUIAccelerationDelegate.h │ │ ├── SDLUIAccelerationDelegate.m │ │ └── SDL_sysjoystick.m │ ├── linux │ │ ├── SDL_sysjoystick.c │ │ └── SDL_sysjoystick_c.h │ ├── nds │ │ └── SDL_sysjoystick.c │ ├── riscos │ │ └── SDL_sysjoystick.c │ └── win32 │ │ ├── SDL_dxjoystick.c │ │ ├── SDL_dxjoystick_c.h │ │ └── SDL_mmjoystick.c │ ├── libm │ ├── e_log.c │ ├── e_pow.c │ ├── e_rem_pio2.c │ ├── e_sqrt.c │ ├── k_cos.c │ ├── k_rem_pio2.c │ ├── k_sin.c │ ├── math.h │ ├── math_private.h │ ├── s_copysign.c │ ├── s_cos.c │ ├── s_fabs.c │ ├── s_floor.c │ ├── s_scalbn.c │ └── s_sin.c │ ├── loadso │ ├── beos │ │ └── SDL_sysloadso.c │ ├── dlopen │ │ └── SDL_sysloadso.c │ ├── dummy │ │ └── SDL_sysloadso.c │ ├── macosx │ │ └── SDL_dlcompat.c │ └── win32 │ │ └── SDL_sysloadso.c │ ├── main │ ├── beos │ │ ├── SDL_BeApp.cc │ │ └── SDL_BeApp.h │ ├── dummy │ │ └── SDL_dummy_main.c │ └── win32 │ │ ├── SDL_win32_main.c │ │ └── version.rc │ ├── power │ ├── SDL_power.c │ ├── beos │ │ └── SDL_syspower.c │ ├── linux │ │ └── SDL_syspower.c │ ├── macosx │ │ └── SDL_syspower.c │ ├── nds │ │ └── SDL_syspower.c │ └── windows │ │ └── SDL_syspower.c │ ├── stdlib │ ├── SDL_getenv.c │ ├── SDL_iconv.c │ ├── SDL_malloc.c │ ├── SDL_qsort.c │ ├── SDL_stdlib.c │ └── SDL_string.c │ ├── thread │ ├── SDL_systhread.h │ ├── SDL_thread.c │ ├── SDL_thread_c.h │ ├── beos │ │ ├── SDL_syssem.c │ │ ├── SDL_systhread.c │ │ └── SDL_systhread_c.h │ ├── generic │ │ ├── SDL_syscond.c │ │ ├── SDL_sysmutex.c │ │ ├── SDL_sysmutex_c.h │ │ ├── SDL_syssem.c │ │ ├── SDL_systhread.c │ │ └── SDL_systhread_c.h │ ├── irix │ │ ├── SDL_syssem.c │ │ ├── SDL_systhread.c │ │ └── SDL_systhread_c.h │ ├── nds │ │ ├── SDL_syscond.c │ │ ├── SDL_syscond_c.h │ │ ├── SDL_sysmutex.c │ │ ├── SDL_sysmutex_c.h │ │ ├── SDL_syssem.c │ │ ├── SDL_syssem_c.h │ │ ├── SDL_systhread.c │ │ └── SDL_systhread_c.h │ ├── pthread │ │ ├── SDL_syscond.c │ │ ├── SDL_sysmutex.c │ │ ├── SDL_sysmutex_c.h │ │ ├── SDL_syssem.c │ │ ├── SDL_systhread.c │ │ └── SDL_systhread_c.h │ ├── riscos │ │ ├── SDL_syscond.c │ │ ├── SDL_sysmutex.c │ │ ├── SDL_sysmutex_c.h │ │ ├── SDL_syssem.c │ │ ├── SDL_systhread.c │ │ └── SDL_systhread_c.h │ └── win32 │ │ ├── SDL_sysmutex.c │ │ ├── SDL_syssem.c │ │ ├── SDL_systhread.c │ │ ├── SDL_systhread_c.h │ │ ├── win_ce_semaphore.c │ │ └── win_ce_semaphore.h │ ├── timer │ ├── SDL_systimer.h │ ├── SDL_timer.c │ ├── SDL_timer_c.h │ ├── beos │ │ └── SDL_systimer.c │ ├── dummy │ │ └── SDL_systimer.c │ ├── nds │ │ └── SDL_systimer.c │ ├── riscos │ │ └── SDL_systimer.c │ ├── unix │ │ └── SDL_systimer.c │ ├── win32 │ │ └── SDL_systimer.c │ └── wince │ │ └── SDL_systimer.c │ └── video │ ├── SDL_RLEaccel.c │ ├── SDL_RLEaccel_c.h │ ├── SDL_alphamult.c │ ├── SDL_alphamult.h │ ├── SDL_blendfillrect.c │ ├── SDL_blendline.c │ ├── SDL_blendpoint.c │ ├── SDL_blendrect.c │ ├── SDL_blit.c │ ├── SDL_blit.h │ ├── SDL_blit_0.c │ ├── SDL_blit_1.c │ ├── SDL_blit_A.c │ ├── SDL_blit_N.c │ ├── SDL_blit_auto.c │ ├── SDL_blit_auto.h │ ├── SDL_blit_copy.c │ ├── SDL_blit_copy.h │ ├── SDL_blit_slow.c │ ├── SDL_blit_slow.h │ ├── SDL_bmp.c │ ├── SDL_draw.h │ ├── SDL_drawline.c │ ├── SDL_drawpoint.c │ ├── SDL_drawrect.c │ ├── SDL_fillrect.c │ ├── SDL_gamma.c │ ├── SDL_glesfuncs.h │ ├── SDL_glfuncs.h │ ├── SDL_leaks.h │ ├── SDL_pixels.c │ ├── SDL_pixels_c.h │ ├── SDL_rect.c │ ├── SDL_rect_c.h │ ├── SDL_renderer_gl.c │ ├── SDL_renderer_gl.h │ ├── SDL_renderer_gles.c │ ├── SDL_renderer_gles.h │ ├── SDL_renderer_sw.c │ ├── SDL_renderer_sw.h │ ├── SDL_stretch.c │ ├── SDL_surface.c │ ├── SDL_sysvideo.h │ ├── SDL_video.c │ ├── SDL_yuv_mmx.c │ ├── SDL_yuv_sw.c │ ├── SDL_yuv_sw_c.h │ ├── Xext │ ├── README │ ├── XME │ │ └── xme.c │ ├── Xinerama │ │ └── Xinerama.c │ ├── XmuStdCmap │ │ ├── AllCmap.c │ │ ├── CmapAlloc.c │ │ ├── CrCmap.c │ │ ├── DelCmap.c │ │ ├── Distinct.c │ │ ├── LookupCmap.c │ │ ├── StdCmap.c │ │ └── VisCmap.c │ ├── Xv │ │ ├── Xv.c │ │ └── Xvlibint.h │ ├── Xxf86vm │ │ └── XF86VMode.c │ └── extensions │ │ ├── StdCmap.h │ │ ├── Xext.h │ │ ├── Xinerama.h │ │ ├── Xv.h │ │ ├── Xvlib.h │ │ ├── Xvproto.h │ │ ├── extutil.h │ │ ├── panoramiXext.h │ │ ├── panoramiXproto.h │ │ ├── xf86dga.h │ │ ├── xf86dga1.h │ │ ├── xf86dga1str.h │ │ ├── xf86dgastr.h │ │ ├── xf86vmode.h │ │ └── xf86vmstr.h │ ├── bwindow │ ├── SDL_BView.h │ ├── SDL_BWin.h │ ├── SDL_lowvideo.h │ ├── SDL_sysevents.cc │ ├── SDL_sysevents_c.h │ ├── SDL_sysmouse.cc │ ├── SDL_sysmouse_c.h │ ├── SDL_sysvideo.cc │ ├── SDL_syswm.cc │ ├── SDL_syswm_c.h │ ├── SDL_sysyuv.cc │ └── SDL_sysyuv.h │ ├── cocoa │ ├── SDL_cocoaevents.h │ ├── SDL_cocoaevents.m │ ├── SDL_cocoakeyboard.h │ ├── SDL_cocoakeyboard.m │ ├── SDL_cocoamodes.h │ ├── SDL_cocoamodes.m │ ├── SDL_cocoamouse.h │ ├── SDL_cocoamouse.m │ ├── SDL_cocoaopengl.h │ ├── SDL_cocoaopengl.m │ ├── SDL_cocoavideo.h │ ├── SDL_cocoavideo.m │ ├── SDL_cocoawindow.h │ └── SDL_cocoawindow.m │ ├── directfb │ ├── SDL_DirectFB_WM.c │ ├── SDL_DirectFB_WM.h │ ├── SDL_DirectFB_dyn.c │ ├── SDL_DirectFB_dyn.h │ ├── SDL_DirectFB_events.c │ ├── SDL_DirectFB_events.h │ ├── SDL_DirectFB_modes.c │ ├── SDL_DirectFB_modes.h │ ├── SDL_DirectFB_mouse.c │ ├── SDL_DirectFB_mouse.h │ ├── SDL_DirectFB_opengl.c │ ├── SDL_DirectFB_opengl.h │ ├── SDL_DirectFB_render.c │ ├── SDL_DirectFB_render.h │ ├── SDL_DirectFB_video.c │ ├── SDL_DirectFB_video.h │ ├── SDL_DirectFB_window.c │ └── SDL_DirectFB_window.h │ ├── dummy │ ├── SDL_nullevents.c │ ├── SDL_nullevents_c.h │ ├── SDL_nullrender.c │ ├── SDL_nullrender_c.h │ ├── SDL_nullvideo.c │ └── SDL_nullvideo.h │ ├── fbcon │ ├── 3dfx_mmio.h │ ├── 3dfx_regs.h │ ├── SDL_fb3dfx.c │ ├── SDL_fb3dfx.h │ ├── SDL_fbelo.c │ ├── SDL_fbelo.h │ ├── SDL_fbevents.c │ ├── SDL_fbevents_c.h │ ├── SDL_fbkeys.h │ ├── SDL_fbmatrox.c │ ├── SDL_fbmatrox.h │ ├── SDL_fbmouse.c │ ├── SDL_fbmouse_c.h │ ├── SDL_fbriva.c │ ├── SDL_fbriva.h │ ├── SDL_fbvideo.c │ ├── SDL_fbvideo.h │ ├── matrox_mmio.h │ ├── matrox_regs.h │ ├── riva_mmio.h │ └── riva_regs.h │ ├── mmx.h │ ├── nds │ ├── SDL_ndsevents.c │ ├── SDL_ndsevents_c.h │ ├── SDL_ndsrender.c │ ├── SDL_ndsrender_c.h │ ├── SDL_ndsvideo.c │ └── SDL_ndsvideo.h │ ├── pandora │ ├── SDL_pandora.c │ ├── SDL_pandora.h │ ├── SDL_pandora_events.c │ └── SDL_pandora_events.h │ ├── photon │ ├── SDL_photon.c │ ├── SDL_photon.h │ ├── SDL_photon_input.c │ ├── SDL_photon_input.h │ ├── SDL_photon_keycodes.h │ ├── SDL_photon_pixelfmt.c │ ├── SDL_photon_pixelfmt.h │ ├── SDL_photon_render.c │ └── SDL_photon_render.h │ ├── ps3 │ ├── SDL_ps3events.c │ ├── SDL_ps3events_c.h │ ├── SDL_ps3modes.c │ ├── SDL_ps3modes_c.h │ ├── SDL_ps3render.c │ ├── SDL_ps3render_c.h │ ├── SDL_ps3spe.c │ ├── SDL_ps3spe_c.h │ ├── SDL_ps3video.c │ ├── SDL_ps3video.h │ └── spulibs │ │ ├── Makefile │ │ ├── bilin_scaler.c │ │ ├── fb_writer.c │ │ ├── spu_common.h │ │ └── yuv2rgb.c │ ├── qnxgf │ ├── SDL_gf_input.c │ ├── SDL_gf_input.h │ ├── SDL_gf_opengles.c │ ├── SDL_gf_opengles.h │ ├── SDL_gf_pixelfmt.c │ ├── SDL_gf_pixelfmt.h │ ├── SDL_gf_render.c │ ├── SDL_gf_render.h │ ├── SDL_hiddi_joystick.h │ ├── SDL_hiddi_keyboard.h │ ├── SDL_hiddi_mouse.h │ ├── SDL_qnxgf.c │ └── SDL_qnxgf.h │ ├── riscos │ ├── SDL_riscosASM.S │ ├── SDL_riscosFullScreenVideo.c │ ├── SDL_riscosevents.c │ ├── SDL_riscosevents_c.h │ ├── SDL_riscosmouse.c │ ├── SDL_riscosmouse_c.h │ ├── SDL_riscossprite.c │ ├── SDL_riscostask.c │ ├── SDL_riscostask.h │ ├── SDL_riscosvideo.c │ ├── SDL_riscosvideo.h │ ├── SDL_wimppoll.c │ └── SDL_wimpvideo.c │ ├── sdlgenblit.pl │ ├── svga │ ├── SDL_svgaevents.c │ ├── SDL_svgaevents_c.h │ ├── SDL_svgamouse.c │ ├── SDL_svgamouse_c.h │ ├── SDL_svgavideo.c │ └── SDL_svgavideo.h │ ├── uikit │ ├── SDL_uikitappdelegate.h │ ├── SDL_uikitappdelegate.m │ ├── SDL_uikitevents.h │ ├── SDL_uikitevents.m │ ├── SDL_uikitkeyboard.h │ ├── SDL_uikitopengles.h │ ├── SDL_uikitopengles.m │ ├── SDL_uikitopenglview.h │ ├── SDL_uikitopenglview.m │ ├── SDL_uikitvideo.h │ ├── SDL_uikitvideo.m │ ├── SDL_uikitview.h │ ├── SDL_uikitview.m │ ├── SDL_uikitwindow.h │ ├── SDL_uikitwindow.m │ ├── jumphack.c │ ├── jumphack.h │ └── keyinfotable.h │ ├── win32 │ ├── SDL_ceddrawrender.c │ ├── SDL_ceddrawrender.h │ ├── SDL_d3drender.c │ ├── SDL_d3drender.h │ ├── SDL_gapirender.c │ ├── SDL_gapirender.h │ ├── SDL_gapirender_c.h │ ├── SDL_gdirender.c │ ├── SDL_gdirender.h │ ├── SDL_vkeys.h │ ├── SDL_win32events.c │ ├── SDL_win32events.h │ ├── SDL_win32gamma.c │ ├── SDL_win32gamma.h │ ├── SDL_win32keyboard.c │ ├── SDL_win32keyboard.h │ ├── SDL_win32modes.c │ ├── SDL_win32modes.h │ ├── SDL_win32mouse.c │ ├── SDL_win32mouse.h │ ├── SDL_win32opengl.c │ ├── SDL_win32opengl.h │ ├── SDL_win32video.c │ ├── SDL_win32video.h │ ├── SDL_win32window.c │ ├── SDL_win32window.h │ ├── wactab │ │ ├── pktdef.h │ │ ├── wintab.h │ │ └── wintabx.h │ └── wmmsg.h │ └── x11 │ ├── SDL_x11dyn.c │ ├── SDL_x11dyn.h │ ├── SDL_x11events.c │ ├── SDL_x11events.h │ ├── SDL_x11gamma.c │ ├── SDL_x11gamma.h │ ├── SDL_x11keyboard.c │ ├── SDL_x11keyboard.h │ ├── SDL_x11modes.c │ ├── SDL_x11modes.h │ ├── SDL_x11mouse.c │ ├── SDL_x11mouse.h │ ├── SDL_x11opengl.c │ ├── SDL_x11opengl.h │ ├── SDL_x11opengles.c │ ├── SDL_x11opengles.h │ ├── SDL_x11render.c │ ├── SDL_x11render.h │ ├── SDL_x11sym.h │ ├── SDL_x11video.c │ ├── SDL_x11video.h │ ├── SDL_x11window.c │ ├── SDL_x11window.h │ ├── imKStoUCS.c │ └── imKStoUCS.h ├── SDL_net ├── SDL_net.h ├── SDLnet.c ├── SDLnetTCP.c ├── SDLnetUDP.c ├── SDLnetselect.c └── SDLnetsys.h ├── configs ├── colortheme.json ├── dospad-ipad.cfg ├── dospad-iphone.cfg ├── icon.png ├── kbd11x4.json ├── kbd11x4_fn.json ├── kbd11x5.json ├── kbd11x5_fn.json ├── kbd11x6.json ├── kbd11x6_fn.json ├── kbd18x5.json ├── kbd18x5_fn.json ├── kpad4x5.json └── ui.cfg ├── credits.html ├── diskc ├── CHOICE.COM ├── PLAY.BAT └── war2a │ ├── CHKLIST.MS │ ├── CONFIG.WAR │ ├── DATA │ ├── Maindat.war │ ├── PATH.WAR │ ├── REZDAT.WAR │ ├── STRDAT.WAR │ └── Snddat.war │ ├── DOS4GW.EXE │ ├── DRIVERS │ ├── ADLIB.MDI │ ├── ADLIBG.MDI │ ├── JAMMER.DIG │ ├── MPU401.MDI │ ├── PAS.MDI │ ├── PASPLUS.MDI │ ├── PROAUDIO.DIG │ ├── RAP10.DIG │ ├── SB16.DIG │ ├── SBAWE32.MDI │ ├── SBLASTER.DIG │ ├── SBLASTER.MDI │ ├── SBPRO.DIG │ ├── SBPRO1.MDI │ ├── SBPRO2.MDI │ ├── ULTRA.DIG │ ├── ULTRA.MDI │ ├── WARCRAFT.AD │ └── WARCRAFT.OPL │ ├── PREFS.WAR │ ├── README.DOC │ ├── README.TXT │ ├── SETUP.EXE │ ├── WAR2.EXE │ └── WAR2EDIT.EXE ├── dosbox ├── Makefile ├── config.h ├── include │ ├── bios.h │ ├── bios_disk.h │ ├── callback.h │ ├── control.h │ ├── cpu.h │ ├── cross.h │ ├── debug.h │ ├── dma.h │ ├── dos_inc.h │ ├── dos_system.h │ ├── dosbox.h │ ├── fpu.h │ ├── hardware.h │ ├── inout.h │ ├── ipx.h │ ├── ipxserver.h │ ├── joystick.h │ ├── keyboard.h │ ├── logging.h │ ├── mapper.h │ ├── mem.h │ ├── mixer.h │ ├── modules.h │ ├── mouse.h │ ├── paging.h │ ├── pic.h │ ├── programs.h │ ├── regs.h │ ├── render.h │ ├── serialport.h │ ├── setup.h │ ├── shell.h │ ├── support.h │ ├── timer.h │ ├── vga.h │ └── video.h └── src │ ├── cpu │ ├── Makefile │ ├── callback.cpp │ ├── core_dyn_x86.cpp │ ├── core_dyn_x86 │ │ ├── cache.h │ │ ├── decoder.h │ │ ├── dyn_fpu.h │ │ ├── dyn_fpu_dh.h │ │ ├── helpers.h │ │ ├── risc_x86.h │ │ └── string.h │ ├── core_dynrec.cpp │ ├── core_dynrec │ │ ├── cache.h │ │ ├── decoder.h │ │ ├── decoder_basic.h │ │ ├── decoder_opcodes.h │ │ ├── dyn_fpu.h │ │ ├── operators.h │ │ ├── risc_armv4le-common.h │ │ ├── risc_armv4le-o3.h │ │ ├── risc_armv4le-s3.h │ │ ├── risc_armv4le-thumb-iw.h │ │ ├── risc_armv4le-thumb-niw.h │ │ ├── risc_armv4le-thumb.h │ │ ├── risc_armv4le.h │ │ ├── risc_mipsel32.h │ │ ├── risc_x64.h │ │ └── risc_x86.h │ ├── core_full.cpp │ ├── core_full │ │ ├── ea_lookup.h │ │ ├── load.h │ │ ├── loadwrite.h │ │ ├── op.h │ │ ├── optable.h │ │ ├── save.h │ │ ├── string.h │ │ └── support.h │ ├── core_normal.cpp │ ├── core_normal │ │ ├── helpers.h │ │ ├── prefix_0f.h │ │ ├── prefix_66.h │ │ ├── prefix_66_0f.h │ │ ├── prefix_none.h │ │ ├── string.h │ │ ├── support.h │ │ └── table_ea.h │ ├── core_prefetch.cpp │ ├── core_simple.cpp │ ├── cpu.cpp │ ├── flags.cpp │ ├── instructions.h │ ├── lazyflags.h │ ├── modrm.cpp │ ├── modrm.h │ └── paging.cpp │ ├── dos │ ├── Makefile │ ├── cdrom.cpp │ ├── cdrom.h │ ├── cdrom_aspi_win32.cpp │ ├── cdrom_image.cpp │ ├── cdrom_ioctl_linux.cpp │ ├── cdrom_ioctl_os2.cpp │ ├── cdrom_ioctl_win32.cpp │ ├── dev_con.h │ ├── dos.cpp │ ├── dos_classes.cpp │ ├── dos_codepages.h │ ├── dos_devices.cpp │ ├── dos_execute.cpp │ ├── dos_files.cpp │ ├── dos_ioctl.cpp │ ├── dos_keyboard_layout.cpp │ ├── dos_keyboard_layout_data.h │ ├── dos_memory.cpp │ ├── dos_misc.cpp │ ├── dos_mscdex.cpp │ ├── dos_programs.cpp │ ├── dos_tables.cpp │ ├── drive_cache.cpp │ ├── drive_fat.cpp │ ├── drive_iso.cpp │ ├── drive_local.cpp │ ├── drive_virtual.cpp │ ├── drives.cpp │ ├── drives.h │ ├── scsidefs.h │ └── wnaspi32.h │ ├── dosbox.cpp │ ├── fpu │ ├── Makefile │ ├── fpu.cpp │ ├── fpu_instructions.h │ └── fpu_instructions_x86.h │ ├── gui │ ├── Makefile │ ├── dosbox_logo.h │ ├── dosbox_splash.h │ ├── midi.cpp │ ├── midi_alsa.h │ ├── midi_coreaudio.h │ ├── midi_coremidi.h │ ├── midi_oss.h │ ├── midi_win32.h │ ├── render.cpp │ ├── render_loops.h │ ├── render_scalers.cpp │ ├── render_scalers.h │ ├── render_simple.h │ ├── render_templates.h │ ├── render_templates_hq.h │ ├── render_templates_hq2x.h │ ├── render_templates_hq3x.h │ ├── render_templates_sai.h │ ├── sdl_gui.cpp │ ├── sdl_mapper.cpp │ └── sdlmain.cpp │ ├── hardware │ ├── Makefile │ ├── adlib.cpp │ ├── adlib.h │ ├── cmos.cpp │ ├── dbopl.cpp │ ├── dbopl.h │ ├── disney.cpp │ ├── dma.cpp │ ├── gameblaster.cpp │ ├── gus.cpp │ ├── hardware.cpp │ ├── iohandler.cpp │ ├── ipx.cpp │ ├── ipxserver.cpp │ ├── joystick.cpp │ ├── keyboard.cpp │ ├── memory.cpp │ ├── mixer.cpp │ ├── mpu401.cpp │ ├── opl.cpp │ ├── opl.h │ ├── pcspeaker.cpp │ ├── pic.cpp │ ├── sblaster.cpp │ ├── serialport │ │ ├── directserial.cpp │ │ ├── directserial.h │ │ ├── libserial.cpp │ │ ├── libserial.h │ │ ├── misc_util.cpp │ │ ├── misc_util.h │ │ ├── nullmodem.cpp │ │ ├── nullmodem.h │ │ ├── serialdummy.cpp │ │ ├── serialdummy.h │ │ ├── serialport.cpp │ │ ├── softmodem.cpp │ │ └── softmodem.h │ ├── tandy_sound.cpp │ ├── timer.cpp │ ├── vga.cpp │ ├── vga_attr.cpp │ ├── vga_crtc.cpp │ ├── vga_dac.cpp │ ├── vga_draw.cpp │ ├── vga_gfx.cpp │ ├── vga_memory.cpp │ ├── vga_misc.cpp │ ├── vga_other.cpp │ ├── vga_paradise.cpp │ ├── vga_s3.cpp │ ├── vga_seq.cpp │ ├── vga_tseng.cpp │ └── vga_xga.cpp │ ├── ints │ ├── Makefile │ ├── bios.cpp │ ├── bios_disk.cpp │ ├── bios_keyboard.cpp │ ├── ems.cpp │ ├── int10.cpp │ ├── int10.h │ ├── int10_char.cpp │ ├── int10_memory.cpp │ ├── int10_misc.cpp │ ├── int10_modes.cpp │ ├── int10_pal.cpp │ ├── int10_put_pixel.cpp │ ├── int10_vesa.cpp │ ├── int10_video_state.cpp │ ├── int10_vptable.cpp │ ├── mouse.cpp │ ├── xms.cpp │ └── xms.h │ ├── libs │ ├── Makefile │ ├── gui_tk │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── gui_tk.cpp │ │ └── gui_tk.h │ └── zmbv │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── zmbv.cpp │ │ └── zmbv.h │ ├── misc │ ├── Makefile │ ├── cross.cpp │ ├── messages.cpp │ ├── programs.cpp │ ├── setup.cpp │ └── support.cpp │ └── shell │ ├── Makefile │ ├── shell.cpp │ ├── shell_batch.cpp │ ├── shell_cmds.cpp │ └── shell_misc.cpp ├── dospad-Info.plist ├── dospad.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── cinicraft.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── cinicraft.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── dospad ├── COPYRIGHT.TXT ├── LaunchImages │ └── Default-568h@2x.png ├── MainWindow.xib ├── Settings.bundle │ ├── Root.plist │ └── en.lproj │ │ └── Root.strings ├── Shared │ ├── AlertPrompt.h │ ├── AlertPrompt.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── ColorTheme.h │ ├── ColorTheme.m │ ├── Common.h │ ├── ConfigManager.h │ ├── ConfigManager.m │ ├── DOSPadBaseViewController.h │ ├── DOSPadBaseViewController.m │ ├── DosEmuThread.h │ ├── DosEmuThread.m │ ├── DosPadUIApplication.h │ ├── DosPadUIApplication.m │ ├── FileSystemObject.h │ ├── FileSystemObject.m │ ├── FloatPanel.h │ ├── FloatPanel.m │ ├── FloatingView.h │ ├── FloatingView.m │ ├── FrameskipIndicator.h │ ├── FrameskipIndicator.m │ ├── GamePadView.h │ ├── GamePadView.m │ ├── HoldIndicator.h │ ├── HoldIndicator.m │ ├── KeyLockIndicator.h │ ├── KeyLockIndicator.m │ ├── KeyMapper.h │ ├── KeyMapper.m │ ├── KeyView.h │ ├── KeyView.m │ ├── KeyboardView.h │ ├── KeyboardView.m │ ├── MfiControllerInputHandler.h │ ├── MfiControllerInputHandler.m │ ├── MfiGameControllerHandler.h │ ├── MfiGameControllerHandler.m │ ├── PianoKeyboard.h │ ├── PianoKeyboard.m │ ├── TipView.h │ ├── TipView.m │ ├── UIExtendedTextField.h │ ├── UIExtendedTextField.m │ ├── VKView.h │ ├── VKView.m │ ├── ZipArchive.h │ ├── ZipArchive.m │ ├── cmd_history.h │ ├── keys.h │ ├── keys.m │ └── main.m ├── audio-res │ ├── installcomplete.mp3 │ ├── installcomplete.wav │ ├── joystickbtn.wav │ ├── joystickmove.wav │ ├── keypress.wav │ └── start-up.mp3 ├── dospad_Prefix.pch ├── dospadportrait.jpg ├── dpicon512.png ├── floatpanel-res │ ├── cpuwindow.png │ ├── cpuwindow@2x.png │ ├── cpuwindow~ipad.png │ ├── exitfull.png │ ├── exitfull@2x.png │ ├── exitfull~ipad.png │ ├── landbarblank.png │ ├── landbarblank@2x.png │ ├── landbarblank~iPad.png │ ├── modegamepad.png │ ├── modegamepad@2x.png │ ├── modegamepadpressed.png │ ├── modegamepadpressed@2x.png │ ├── modegamepadpressed~ipad.png │ ├── modegamepad~ipad.png │ ├── modejoy.png │ ├── modejoy@2x.png │ ├── modejoypressed.png │ ├── modejoypressed@2x.png │ ├── modejoypressed~ipad.png │ ├── modejoy~ipad.png │ ├── modekeyoff.png │ ├── modekeyoff@2x.png │ ├── modekeyoff~ipad.png │ ├── modekeyon.png │ ├── modekeyon@2x.png │ ├── modekeyon~ipad.png │ ├── modenumpad.png │ ├── modenumpad@2x.png │ ├── modenumpadpressed.png │ ├── modenumpadpressed@2x.png │ ├── modenumpadpressed~ipad.png │ ├── modenumpad~ipad.png │ ├── modepiano.png │ ├── modepiano@2x.png │ ├── modepianopressed.png │ ├── modepianopressed@2x.png │ ├── modepianopressed~ipad.png │ ├── modepiano~ipad.png │ ├── mouseoff.png │ ├── mouseoff@2x.png │ ├── mouseoff~ipad.png │ ├── mouseon.png │ ├── mouseon@2x.png │ ├── mouseon~ipad.png │ ├── options.png │ ├── options@2x.png │ ├── options~ipad.png │ ├── sticky.png │ ├── sticky@2x.png │ ├── sticky~ipad.png │ ├── unsticky.png │ ├── unsticky@2x.png │ └── unsticky~ipad.png ├── gamepad-res │ ├── btn.png │ ├── btnpressed.png │ ├── button.png │ ├── buttonpressed.png │ ├── centre.png │ ├── centre@2x.png │ ├── dpad.png │ ├── dpad@2x.png │ ├── dpadglass.png │ ├── dpadpressed.png │ ├── east.png │ ├── fire.png │ ├── firepressed.png │ ├── glass │ │ ├── glass-centre.png │ │ ├── glass-east.png │ │ ├── glass-north.png │ │ ├── glass-northeast.png │ │ ├── glass-northwest.png │ │ ├── glass-south.png │ │ ├── glass-southeast.png │ │ ├── glass-southwest.png │ │ └── glass-west.png │ ├── hires │ │ ├── btn@2x.png │ │ ├── btnpressed@2x.png │ │ ├── dpadglass@2x.png │ │ ├── dpadpressed@2x.png │ │ ├── east@2x.png │ │ ├── glass-centre@2x.png │ │ ├── glass-east@2x.png │ │ ├── glass-north@2x.png │ │ ├── glass-northeast@2x.png │ │ ├── glass-northwest@2x.png │ │ ├── glass-south@2x.png │ │ ├── glass-southeast@2x.png │ │ ├── glass-southwest@2x.png │ │ ├── glass-west@2x.png │ │ ├── north@2x.png │ │ ├── northeast@2x.png │ │ ├── northwest@2x.png │ │ ├── south@2x.png │ │ ├── southeast@2x.png │ │ ├── southwest@2x.png │ │ └── west@2x.png │ ├── ipadleftside.png │ ├── ipadrightside.png │ ├── light.png │ ├── north.png │ ├── northeast.png │ ├── northwest.png │ ├── south.png │ ├── southeast.png │ ├── southwest.png │ └── west.png ├── iPad │ ├── CommandListView.h │ ├── CommandListView.m │ ├── DosPadViewController.h │ ├── DosPadViewController.m │ ├── SliderView.h │ └── SliderView.m ├── iPhone │ ├── DosPadViewController_iPhone.h │ └── DosPadViewController_iPhone.m ├── minizip │ ├── ChangeLogUnzip │ ├── Makefile │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── iowin32.c │ ├── iowin32.h │ ├── miniunz.c │ ├── minizip.c │ ├── mztools.c │ ├── mztools.h │ ├── unzip.c │ ├── unzip.h │ ├── zconf.h │ ├── zip.c │ └── zip.h └── misc-res │ ├── 25-Keys-with-6x4-grid.png │ ├── 25-keys.png │ ├── bar-portrait-iphone.png │ ├── bar-portrait-iphone@2x.png │ ├── bar.png │ ├── dospadportrait.jpg │ ├── dpnote.png │ ├── gear.png │ ├── gift.png │ ├── holdfinger.png │ ├── idos-portrait.jpg │ ├── kbd.png │ ├── keyboard.png │ ├── landbariphon.png │ ├── landbariphon@2x.png │ ├── leftmouse.png │ ├── leftmouse@2x.png │ ├── longbutton.png │ ├── modesel.png │ ├── rightmouse.png │ ├── rightmouse@2x.png │ ├── slider.png │ ├── switch.png │ ├── switch@2x.png │ ├── switchbutton.png │ └── switchbutton@2x.png ├── iDOS-Beta-Info.plist ├── iDOS-Info.plist ├── include ├── SDL.h ├── SDL_atomic.h ├── SDL_audio.h ├── SDL_compat.h ├── SDL_config.h ├── SDL_copying.h ├── SDL_cpuinfo.h ├── SDL_endian.h ├── SDL_error.h ├── SDL_events.h ├── SDL_haptic.h ├── SDL_joystick.h ├── SDL_keyboard.h ├── SDL_keysym.h ├── SDL_loadso.h ├── SDL_main.h ├── SDL_mouse.h ├── SDL_mutex.h ├── SDL_name.h ├── SDL_net.h ├── SDL_opengl.h ├── SDL_opengles.h ├── SDL_pixels.h ├── SDL_platform.h ├── SDL_power.h ├── SDL_quit.h ├── SDL_rect.h ├── SDL_revision.h ├── SDL_rwops.h ├── SDL_scancode.h ├── SDL_stdinc.h ├── SDL_surface.h ├── SDL_syswm.h ├── SDL_thread.h ├── SDL_timer.h ├── SDL_types.h ├── SDL_version.h ├── SDL_video.h ├── SDLnetsys.h ├── begin_code.h └── close_code.h └── screenshots ├── landscape.png └── portrait.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/.DS_Store -------------------------------------------------------------------------------- /AppIcons/Icon-iPad-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPad-29.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPad-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPad-29@2x.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPad-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPad-40.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPad-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPad-40@2x.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPad-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPad-50.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPad-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPad-50@2x.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPad-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPad-72.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPad-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPad-72@2x.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPad-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPad-76.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPad-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPad-76@2x.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPhone-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPhone-29.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPhone-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPhone-29@2x.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPhone-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPhone-29@3x.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPhone-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPhone-40@2x.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPhone-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPhone-40@3x.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPhone-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPhone-57.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPhone-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPhone-57@2x.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPhone-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPhone-60@2x.png -------------------------------------------------------------------------------- /AppIcons/Icon-iPhone-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/Icon-iPhone-60@3x.png -------------------------------------------------------------------------------- /AppIcons/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/iTunesArtwork -------------------------------------------------------------------------------- /AppIcons/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/AppIcons/iTunesArtwork@2x -------------------------------------------------------------------------------- /Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/Default-568h@2x.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /MongooseDaemon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/MongooseDaemon/LICENSE -------------------------------------------------------------------------------- /MongooseDaemon/MongooseDaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/MongooseDaemon/MongooseDaemon.h -------------------------------------------------------------------------------- /MongooseDaemon/MongooseDaemon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/MongooseDaemon/MongooseDaemon.m -------------------------------------------------------------------------------- /MongooseDaemon/README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/MongooseDaemon/README.rdoc -------------------------------------------------------------------------------- /MongooseDaemon/mongoose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/MongooseDaemon/mongoose.c -------------------------------------------------------------------------------- /MongooseDaemon/mongoose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/MongooseDaemon/mongoose.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/README.md -------------------------------------------------------------------------------- /SDL/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/.hgignore -------------------------------------------------------------------------------- /SDL/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/.hgtags -------------------------------------------------------------------------------- /SDL/.indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/.indent.pro -------------------------------------------------------------------------------- /SDL/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/BUGS -------------------------------------------------------------------------------- /SDL/Borland.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/Borland.html -------------------------------------------------------------------------------- /SDL/Borland.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/Borland.zip -------------------------------------------------------------------------------- /SDL/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/COPYING -------------------------------------------------------------------------------- /SDL/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/CREDITS -------------------------------------------------------------------------------- /SDL/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/INSTALL -------------------------------------------------------------------------------- /SDL/Makefile.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/Makefile.ds -------------------------------------------------------------------------------- /SDL/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/Makefile.in -------------------------------------------------------------------------------- /SDL/Makefile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/Makefile.minimal -------------------------------------------------------------------------------- /SDL/Makefile.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/Makefile.pandora -------------------------------------------------------------------------------- /SDL/Makefile.wiz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/Makefile.wiz -------------------------------------------------------------------------------- /SDL/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/NOTES -------------------------------------------------------------------------------- /SDL/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/README -------------------------------------------------------------------------------- /SDL/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/README-SDL.txt -------------------------------------------------------------------------------- /SDL/README.BeOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/README.BeOS -------------------------------------------------------------------------------- /SDL/README.DirectFB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/README.DirectFB -------------------------------------------------------------------------------- /SDL/README.HG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/README.HG -------------------------------------------------------------------------------- /SDL/README.MacOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/README.MacOSX -------------------------------------------------------------------------------- /SDL/README.PS3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/README.PS3 -------------------------------------------------------------------------------- /SDL/README.Porting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/README.Porting -------------------------------------------------------------------------------- /SDL/README.QNX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/README.QNX -------------------------------------------------------------------------------- /SDL/README.RISCOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/README.RISCOS -------------------------------------------------------------------------------- /SDL/README.Watcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/README.Watcom -------------------------------------------------------------------------------- /SDL/README.WinCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/README.WinCE -------------------------------------------------------------------------------- /SDL/README.iphoneos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/README.iphoneos -------------------------------------------------------------------------------- /SDL/README.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/README.pandora -------------------------------------------------------------------------------- /SDL/SDL.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/SDL.spec.in -------------------------------------------------------------------------------- /SDL/acinclude/ac_check_define.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/acinclude/ac_check_define.m4 -------------------------------------------------------------------------------- /SDL/acinclude/alsa.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/acinclude/alsa.m4 -------------------------------------------------------------------------------- /SDL/acinclude/esd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/acinclude/esd.m4 -------------------------------------------------------------------------------- /SDL/acinclude/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/acinclude/libtool.m4 -------------------------------------------------------------------------------- /SDL/acinclude/ltdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/acinclude/ltdl.m4 -------------------------------------------------------------------------------- /SDL/acinclude/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/acinclude/ltoptions.m4 -------------------------------------------------------------------------------- /SDL/acinclude/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/acinclude/ltsugar.m4 -------------------------------------------------------------------------------- /SDL/acinclude/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/acinclude/ltversion.m4 -------------------------------------------------------------------------------- /SDL/acinclude/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/acinclude/lt~obsolete.m4 -------------------------------------------------------------------------------- /SDL/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/aclocal.m4 -------------------------------------------------------------------------------- /SDL/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/autogen.sh -------------------------------------------------------------------------------- /SDL/build-scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/build-scripts/config.guess -------------------------------------------------------------------------------- /SDL/build-scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/build-scripts/config.sub -------------------------------------------------------------------------------- /SDL/build-scripts/fatbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/build-scripts/fatbuild.sh -------------------------------------------------------------------------------- /SDL/build-scripts/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/build-scripts/install-sh -------------------------------------------------------------------------------- /SDL/build-scripts/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/build-scripts/ltmain.sh -------------------------------------------------------------------------------- /SDL/build-scripts/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/build-scripts/mkinstalldirs -------------------------------------------------------------------------------- /SDL/build-scripts/showrev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/build-scripts/showrev.sh -------------------------------------------------------------------------------- /SDL/build-scripts/snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/build-scripts/snapshot.sh -------------------------------------------------------------------------------- /SDL/build-scripts/strip_fPIC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/build-scripts/strip_fPIC.sh -------------------------------------------------------------------------------- /SDL/build-scripts/updaterev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/build-scripts/updaterev.sh -------------------------------------------------------------------------------- /SDL/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/configure -------------------------------------------------------------------------------- /SDL/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/configure.in -------------------------------------------------------------------------------- /SDL/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL.h -------------------------------------------------------------------------------- /SDL/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_assert.h -------------------------------------------------------------------------------- /SDL/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_atomic.h -------------------------------------------------------------------------------- /SDL/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_audio.h -------------------------------------------------------------------------------- /SDL/include/SDL_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_compat.h -------------------------------------------------------------------------------- /SDL/include/SDL_config.h: -------------------------------------------------------------------------------- 1 | SDL_config.h.default -------------------------------------------------------------------------------- /SDL/include/SDL_config.h.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_config.h.default -------------------------------------------------------------------------------- /SDL/include/SDL_config.h.generated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_config.h.generated -------------------------------------------------------------------------------- /SDL/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_config.h.in -------------------------------------------------------------------------------- /SDL/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /SDL/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /SDL/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /SDL/include/SDL_config_nintendods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_config_nintendods.h -------------------------------------------------------------------------------- /SDL/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /SDL/include/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_config_win32.h -------------------------------------------------------------------------------- /SDL/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /SDL/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_copying.h -------------------------------------------------------------------------------- /SDL/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /SDL/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_endian.h -------------------------------------------------------------------------------- /SDL/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_error.h -------------------------------------------------------------------------------- /SDL/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_events.h -------------------------------------------------------------------------------- /SDL/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_haptic.h -------------------------------------------------------------------------------- /SDL/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_joystick.h -------------------------------------------------------------------------------- /SDL/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_keyboard.h -------------------------------------------------------------------------------- /SDL/include/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_keysym.h -------------------------------------------------------------------------------- /SDL/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_loadso.h -------------------------------------------------------------------------------- /SDL/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_main.h -------------------------------------------------------------------------------- /SDL/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_mouse.h -------------------------------------------------------------------------------- /SDL/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_mutex.h -------------------------------------------------------------------------------- /SDL/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_name.h -------------------------------------------------------------------------------- /SDL/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_opengl.h -------------------------------------------------------------------------------- /SDL/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_opengles.h -------------------------------------------------------------------------------- /SDL/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_pixels.h -------------------------------------------------------------------------------- /SDL/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_platform.h -------------------------------------------------------------------------------- /SDL/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_power.h -------------------------------------------------------------------------------- /SDL/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_quit.h -------------------------------------------------------------------------------- /SDL/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_rect.h -------------------------------------------------------------------------------- /SDL/include/SDL_revision.h: -------------------------------------------------------------------------------- 1 | #define SDL_REVISION "hg-4429:faa9fc8e7f67" 2 | -------------------------------------------------------------------------------- /SDL/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_rwops.h -------------------------------------------------------------------------------- /SDL/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_scancode.h -------------------------------------------------------------------------------- /SDL/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_stdinc.h -------------------------------------------------------------------------------- /SDL/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_surface.h -------------------------------------------------------------------------------- /SDL/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_syswm.h -------------------------------------------------------------------------------- /SDL/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_thread.h -------------------------------------------------------------------------------- /SDL/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_timer.h -------------------------------------------------------------------------------- /SDL/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_types.h -------------------------------------------------------------------------------- /SDL/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_version.h -------------------------------------------------------------------------------- /SDL/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/SDL_video.h -------------------------------------------------------------------------------- /SDL/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/begin_code.h -------------------------------------------------------------------------------- /SDL/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/close_code.h -------------------------------------------------------------------------------- /SDL/include/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/include/doxyfile -------------------------------------------------------------------------------- /SDL/sdl-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/sdl-config.in -------------------------------------------------------------------------------- /SDL/sdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/sdl.m4 -------------------------------------------------------------------------------- /SDL/sdl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/sdl.pc.in -------------------------------------------------------------------------------- /SDL/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/SDL.c -------------------------------------------------------------------------------- /SDL/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/SDL_assert.c -------------------------------------------------------------------------------- /SDL/src/SDL_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/SDL_compat.c -------------------------------------------------------------------------------- /SDL/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/SDL_error.c -------------------------------------------------------------------------------- /SDL/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/SDL_error_c.h -------------------------------------------------------------------------------- /SDL/src/SDL_fatal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/SDL_fatal.c -------------------------------------------------------------------------------- /SDL/src/SDL_fatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/SDL_fatal.h -------------------------------------------------------------------------------- /SDL/src/atomic/dummy/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/atomic/dummy/SDL_atomic.c -------------------------------------------------------------------------------- /SDL/src/atomic/linux/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/atomic/linux/SDL_atomic.c -------------------------------------------------------------------------------- /SDL/src/atomic/macosx/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/atomic/macosx/SDL_atomic.c -------------------------------------------------------------------------------- /SDL/src/atomic/qnx/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/atomic/qnx/SDL_atomic.c -------------------------------------------------------------------------------- /SDL/src/atomic/win32/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/atomic/win32/SDL_atomic.c -------------------------------------------------------------------------------- /SDL/src/audio/SDL_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_audio.c -------------------------------------------------------------------------------- /SDL/src/audio/SDL_audio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_audio_c.h -------------------------------------------------------------------------------- /SDL/src/audio/SDL_audiocvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_audiocvt.c -------------------------------------------------------------------------------- /SDL/src/audio/SDL_audiodev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_audiodev.c -------------------------------------------------------------------------------- /SDL/src/audio/SDL_audiodev_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_audiodev_c.h -------------------------------------------------------------------------------- /SDL/src/audio/SDL_audiomem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_audiomem.h -------------------------------------------------------------------------------- /SDL/src/audio/SDL_audiotypecvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_audiotypecvt.c -------------------------------------------------------------------------------- /SDL/src/audio/SDL_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_mixer.c -------------------------------------------------------------------------------- /SDL/src/audio/SDL_mixer_MMX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_mixer_MMX.c -------------------------------------------------------------------------------- /SDL/src/audio/SDL_mixer_MMX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_mixer_MMX.h -------------------------------------------------------------------------------- /SDL/src/audio/SDL_mixer_MMX_VC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_mixer_MMX_VC.c -------------------------------------------------------------------------------- /SDL/src/audio/SDL_mixer_MMX_VC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_mixer_MMX_VC.h -------------------------------------------------------------------------------- /SDL/src/audio/SDL_mixer_m68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_mixer_m68k.c -------------------------------------------------------------------------------- /SDL/src/audio/SDL_mixer_m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_mixer_m68k.h -------------------------------------------------------------------------------- /SDL/src/audio/SDL_sysaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_sysaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/SDL_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_wave.c -------------------------------------------------------------------------------- /SDL/src/audio/SDL_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/SDL_wave.h -------------------------------------------------------------------------------- /SDL/src/audio/alsa/SDL_alsa_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/alsa/SDL_alsa_audio.c -------------------------------------------------------------------------------- /SDL/src/audio/alsa/SDL_alsa_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/alsa/SDL_alsa_audio.h -------------------------------------------------------------------------------- /SDL/src/audio/arts/SDL_artsaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/arts/SDL_artsaudio.c -------------------------------------------------------------------------------- /SDL/src/audio/arts/SDL_artsaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/arts/SDL_artsaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/baudio/SDL_beaudio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/baudio/SDL_beaudio.cc -------------------------------------------------------------------------------- /SDL/src/audio/baudio/SDL_beaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/baudio/SDL_beaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/bsd/SDL_bsdaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/bsd/SDL_bsdaudio.c -------------------------------------------------------------------------------- /SDL/src/audio/bsd/SDL_bsdaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/bsd/SDL_bsdaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/disk/SDL_diskaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/disk/SDL_diskaudio.c -------------------------------------------------------------------------------- /SDL/src/audio/disk/SDL_diskaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/disk/SDL_diskaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/dma/SDL_dmaaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/dma/SDL_dmaaudio.c -------------------------------------------------------------------------------- /SDL/src/audio/dma/SDL_dmaaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/dma/SDL_dmaaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/dmedia/SDL_irixaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/dmedia/SDL_irixaudio.c -------------------------------------------------------------------------------- /SDL/src/audio/dmedia/SDL_irixaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/dmedia/SDL_irixaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/dsp/SDL_dspaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/dsp/SDL_dspaudio.c -------------------------------------------------------------------------------- /SDL/src/audio/dsp/SDL_dspaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/dsp/SDL_dspaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/dummy/SDL_dummyaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/dummy/SDL_dummyaudio.c -------------------------------------------------------------------------------- /SDL/src/audio/dummy/SDL_dummyaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/dummy/SDL_dummyaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/esd/SDL_esdaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/esd/SDL_esdaudio.c -------------------------------------------------------------------------------- /SDL/src/audio/esd/SDL_esdaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/esd/SDL_esdaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/macosx/SDL_coreaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/macosx/SDL_coreaudio.c -------------------------------------------------------------------------------- /SDL/src/audio/macosx/SDL_coreaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/macosx/SDL_coreaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/mme/SDL_mmeaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/mme/SDL_mmeaudio.c -------------------------------------------------------------------------------- /SDL/src/audio/mme/SDL_mmeaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/mme/SDL_mmeaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/nas/SDL_nasaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/nas/SDL_nasaudio.c -------------------------------------------------------------------------------- /SDL/src/audio/nas/SDL_nasaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/nas/SDL_nasaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/nds/SDL_ndsaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/nds/SDL_ndsaudio.c -------------------------------------------------------------------------------- /SDL/src/audio/nds/SDL_ndsaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/nds/SDL_ndsaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/paudio/SDL_paudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/paudio/SDL_paudio.c -------------------------------------------------------------------------------- /SDL/src/audio/paudio/SDL_paudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/paudio/SDL_paudio.h -------------------------------------------------------------------------------- /SDL/src/audio/qsa/SDL_qsa_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/qsa/SDL_qsa_audio.c -------------------------------------------------------------------------------- /SDL/src/audio/qsa/SDL_qsa_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/qsa/SDL_qsa_audio.h -------------------------------------------------------------------------------- /SDL/src/audio/sdlgenaudiocvt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/sdlgenaudiocvt.pl -------------------------------------------------------------------------------- /SDL/src/audio/sun/SDL_sunaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/sun/SDL_sunaudio.c -------------------------------------------------------------------------------- /SDL/src/audio/sun/SDL_sunaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/sun/SDL_sunaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/ums/SDL_umsaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/ums/SDL_umsaudio.c -------------------------------------------------------------------------------- /SDL/src/audio/ums/SDL_umsaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/ums/SDL_umsaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/windib/SDL_dibaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/windib/SDL_dibaudio.c -------------------------------------------------------------------------------- /SDL/src/audio/windib/SDL_dibaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/windib/SDL_dibaudio.h -------------------------------------------------------------------------------- /SDL/src/audio/windx5/SDL_dx5audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/windx5/SDL_dx5audio.c -------------------------------------------------------------------------------- /SDL/src/audio/windx5/SDL_dx5audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/windx5/SDL_dx5audio.h -------------------------------------------------------------------------------- /SDL/src/audio/windx5/directx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/audio/windx5/directx.h -------------------------------------------------------------------------------- /SDL/src/cpuinfo/SDL_cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/cpuinfo/SDL_cpuinfo.c -------------------------------------------------------------------------------- /SDL/src/events/SDL_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/SDL_events.c -------------------------------------------------------------------------------- /SDL/src/events/SDL_events_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/SDL_events_c.h -------------------------------------------------------------------------------- /SDL/src/events/SDL_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/SDL_keyboard.c -------------------------------------------------------------------------------- /SDL/src/events/SDL_keyboard_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/SDL_keyboard_c.h -------------------------------------------------------------------------------- /SDL/src/events/SDL_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/SDL_mouse.c -------------------------------------------------------------------------------- /SDL/src/events/SDL_mouse_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/SDL_mouse_c.h -------------------------------------------------------------------------------- /SDL/src/events/SDL_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/SDL_quit.c -------------------------------------------------------------------------------- /SDL/src/events/SDL_sysevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/SDL_sysevents.h -------------------------------------------------------------------------------- /SDL/src/events/SDL_windowevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/SDL_windowevents.c -------------------------------------------------------------------------------- /SDL/src/events/SDL_windowevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/SDL_windowevents_c.h -------------------------------------------------------------------------------- /SDL/src/events/blank_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/blank_cursor.h -------------------------------------------------------------------------------- /SDL/src/events/default_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/default_cursor.h -------------------------------------------------------------------------------- /SDL/src/events/scancodes_darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/scancodes_darwin.h -------------------------------------------------------------------------------- /SDL/src/events/scancodes_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/scancodes_linux.h -------------------------------------------------------------------------------- /SDL/src/events/scancodes_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/scancodes_win32.h -------------------------------------------------------------------------------- /SDL/src/events/scancodes_xfree86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/events/scancodes_xfree86.h -------------------------------------------------------------------------------- /SDL/src/file/SDL_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/file/SDL_rwops.c -------------------------------------------------------------------------------- /SDL/src/haptic/SDL_haptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/haptic/SDL_haptic.c -------------------------------------------------------------------------------- /SDL/src/haptic/SDL_syshaptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/haptic/SDL_syshaptic.h -------------------------------------------------------------------------------- /SDL/src/haptic/darwin/SDL_syshaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/haptic/darwin/SDL_syshaptic.c -------------------------------------------------------------------------------- /SDL/src/haptic/nds/SDL_syshaptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/haptic/nds/SDL_syshaptic.c -------------------------------------------------------------------------------- /SDL/src/joystick/SDL_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/joystick/SDL_joystick.c -------------------------------------------------------------------------------- /SDL/src/joystick/SDL_joystick_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/joystick/SDL_joystick_c.h -------------------------------------------------------------------------------- /SDL/src/joystick/SDL_sysjoystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/joystick/SDL_sysjoystick.h -------------------------------------------------------------------------------- /SDL/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/libm/e_log.c -------------------------------------------------------------------------------- /SDL/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/libm/e_pow.c -------------------------------------------------------------------------------- /SDL/src/libm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/libm/e_rem_pio2.c -------------------------------------------------------------------------------- /SDL/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /SDL/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/libm/k_cos.c -------------------------------------------------------------------------------- /SDL/src/libm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/libm/k_rem_pio2.c -------------------------------------------------------------------------------- /SDL/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/libm/k_sin.c -------------------------------------------------------------------------------- /SDL/src/libm/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/libm/math.h -------------------------------------------------------------------------------- /SDL/src/libm/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/libm/math_private.h -------------------------------------------------------------------------------- /SDL/src/libm/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/libm/s_copysign.c -------------------------------------------------------------------------------- /SDL/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/libm/s_cos.c -------------------------------------------------------------------------------- /SDL/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/libm/s_fabs.c -------------------------------------------------------------------------------- /SDL/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/libm/s_floor.c -------------------------------------------------------------------------------- /SDL/src/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/libm/s_scalbn.c -------------------------------------------------------------------------------- /SDL/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/libm/s_sin.c -------------------------------------------------------------------------------- /SDL/src/loadso/beos/SDL_sysloadso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/loadso/beos/SDL_sysloadso.c -------------------------------------------------------------------------------- /SDL/src/main/beos/SDL_BeApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/main/beos/SDL_BeApp.cc -------------------------------------------------------------------------------- /SDL/src/main/beos/SDL_BeApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/main/beos/SDL_BeApp.h -------------------------------------------------------------------------------- /SDL/src/main/dummy/SDL_dummy_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/main/dummy/SDL_dummy_main.c -------------------------------------------------------------------------------- /SDL/src/main/win32/SDL_win32_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/main/win32/SDL_win32_main.c -------------------------------------------------------------------------------- /SDL/src/main/win32/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/main/win32/version.rc -------------------------------------------------------------------------------- /SDL/src/power/SDL_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/power/SDL_power.c -------------------------------------------------------------------------------- /SDL/src/power/beos/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/power/beos/SDL_syspower.c -------------------------------------------------------------------------------- /SDL/src/power/linux/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/power/linux/SDL_syspower.c -------------------------------------------------------------------------------- /SDL/src/power/macosx/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/power/macosx/SDL_syspower.c -------------------------------------------------------------------------------- /SDL/src/power/nds/SDL_syspower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/power/nds/SDL_syspower.c -------------------------------------------------------------------------------- /SDL/src/stdlib/SDL_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/stdlib/SDL_getenv.c -------------------------------------------------------------------------------- /SDL/src/stdlib/SDL_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/stdlib/SDL_iconv.c -------------------------------------------------------------------------------- /SDL/src/stdlib/SDL_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/stdlib/SDL_malloc.c -------------------------------------------------------------------------------- /SDL/src/stdlib/SDL_qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/stdlib/SDL_qsort.c -------------------------------------------------------------------------------- /SDL/src/stdlib/SDL_stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/stdlib/SDL_stdlib.c -------------------------------------------------------------------------------- /SDL/src/stdlib/SDL_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/stdlib/SDL_string.c -------------------------------------------------------------------------------- /SDL/src/thread/SDL_systhread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/SDL_systhread.h -------------------------------------------------------------------------------- /SDL/src/thread/SDL_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/SDL_thread.c -------------------------------------------------------------------------------- /SDL/src/thread/SDL_thread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/SDL_thread_c.h -------------------------------------------------------------------------------- /SDL/src/thread/beos/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/beos/SDL_syssem.c -------------------------------------------------------------------------------- /SDL/src/thread/beos/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/beos/SDL_systhread.c -------------------------------------------------------------------------------- /SDL/src/thread/generic/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/generic/SDL_syssem.c -------------------------------------------------------------------------------- /SDL/src/thread/irix/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/irix/SDL_syssem.c -------------------------------------------------------------------------------- /SDL/src/thread/irix/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/irix/SDL_systhread.c -------------------------------------------------------------------------------- /SDL/src/thread/nds/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/nds/SDL_syscond.c -------------------------------------------------------------------------------- /SDL/src/thread/nds/SDL_syscond_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/nds/SDL_syscond_c.h -------------------------------------------------------------------------------- /SDL/src/thread/nds/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/nds/SDL_sysmutex.c -------------------------------------------------------------------------------- /SDL/src/thread/nds/SDL_sysmutex_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/nds/SDL_sysmutex_c.h -------------------------------------------------------------------------------- /SDL/src/thread/nds/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/nds/SDL_syssem.c -------------------------------------------------------------------------------- /SDL/src/thread/nds/SDL_syssem_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/nds/SDL_syssem_c.h -------------------------------------------------------------------------------- /SDL/src/thread/nds/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/nds/SDL_systhread.c -------------------------------------------------------------------------------- /SDL/src/thread/pthread/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/pthread/SDL_syssem.c -------------------------------------------------------------------------------- /SDL/src/thread/riscos/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/riscos/SDL_syscond.c -------------------------------------------------------------------------------- /SDL/src/thread/riscos/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/riscos/SDL_syssem.c -------------------------------------------------------------------------------- /SDL/src/thread/win32/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/win32/SDL_sysmutex.c -------------------------------------------------------------------------------- /SDL/src/thread/win32/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/thread/win32/SDL_syssem.c -------------------------------------------------------------------------------- /SDL/src/timer/SDL_systimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/timer/SDL_systimer.h -------------------------------------------------------------------------------- /SDL/src/timer/SDL_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/timer/SDL_timer.c -------------------------------------------------------------------------------- /SDL/src/timer/SDL_timer_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/timer/SDL_timer_c.h -------------------------------------------------------------------------------- /SDL/src/timer/beos/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/timer/beos/SDL_systimer.c -------------------------------------------------------------------------------- /SDL/src/timer/dummy/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/timer/dummy/SDL_systimer.c -------------------------------------------------------------------------------- /SDL/src/timer/nds/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/timer/nds/SDL_systimer.c -------------------------------------------------------------------------------- /SDL/src/timer/riscos/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/timer/riscos/SDL_systimer.c -------------------------------------------------------------------------------- /SDL/src/timer/unix/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/timer/unix/SDL_systimer.c -------------------------------------------------------------------------------- /SDL/src/timer/win32/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/timer/win32/SDL_systimer.c -------------------------------------------------------------------------------- /SDL/src/timer/wince/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/timer/wince/SDL_systimer.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_RLEaccel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_RLEaccel.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_RLEaccel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_RLEaccel_c.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_alphamult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_alphamult.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_alphamult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_alphamult.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_blendfillrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blendfillrect.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_blendline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blendline.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_blendpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blendpoint.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_blendrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blendrect.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blit.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blit.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_blit_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blit_0.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_blit_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blit_1.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_blit_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blit_A.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_blit_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blit_N.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_blit_auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blit_auto.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_blit_auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blit_auto.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_blit_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blit_copy.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_blit_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blit_copy.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_blit_slow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blit_slow.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_blit_slow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_blit_slow.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_draw.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_drawline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_drawline.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_drawpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_drawpoint.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_drawrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_drawrect.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_fillrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_fillrect.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_gamma.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_glesfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_glesfuncs.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_glfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_glfuncs.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_leaks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_leaks.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_pixels.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_pixels_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_pixels_c.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_rect.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_rect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_rect_c.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_renderer_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_renderer_gl.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_renderer_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_renderer_gl.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_renderer_gles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_renderer_gles.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_renderer_gles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_renderer_gles.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_renderer_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_renderer_sw.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_renderer_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_renderer_sw.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_stretch.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_surface.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_sysvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_sysvideo.h -------------------------------------------------------------------------------- /SDL/src/video/SDL_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_video.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_yuv_mmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_yuv_mmx.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_yuv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_yuv_sw.c -------------------------------------------------------------------------------- /SDL/src/video/SDL_yuv_sw_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/SDL_yuv_sw_c.h -------------------------------------------------------------------------------- /SDL/src/video/Xext/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/Xext/README -------------------------------------------------------------------------------- /SDL/src/video/Xext/XME/xme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/Xext/XME/xme.c -------------------------------------------------------------------------------- /SDL/src/video/Xext/Xv/Xv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/Xext/Xv/Xv.c -------------------------------------------------------------------------------- /SDL/src/video/Xext/Xv/Xvlibint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/Xext/Xv/Xvlibint.h -------------------------------------------------------------------------------- /SDL/src/video/Xext/extensions/Xv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/Xext/extensions/Xv.h -------------------------------------------------------------------------------- /SDL/src/video/bwindow/SDL_BView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/bwindow/SDL_BView.h -------------------------------------------------------------------------------- /SDL/src/video/bwindow/SDL_BWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/bwindow/SDL_BWin.h -------------------------------------------------------------------------------- /SDL/src/video/bwindow/SDL_syswm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/bwindow/SDL_syswm.cc -------------------------------------------------------------------------------- /SDL/src/video/bwindow/SDL_syswm_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/bwindow/SDL_syswm_c.h -------------------------------------------------------------------------------- /SDL/src/video/bwindow/SDL_sysyuv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/bwindow/SDL_sysyuv.cc -------------------------------------------------------------------------------- /SDL/src/video/bwindow/SDL_sysyuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/bwindow/SDL_sysyuv.h -------------------------------------------------------------------------------- /SDL/src/video/dummy/SDL_nullvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/dummy/SDL_nullvideo.c -------------------------------------------------------------------------------- /SDL/src/video/dummy/SDL_nullvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/dummy/SDL_nullvideo.h -------------------------------------------------------------------------------- /SDL/src/video/fbcon/3dfx_mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/3dfx_mmio.h -------------------------------------------------------------------------------- /SDL/src/video/fbcon/3dfx_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/3dfx_regs.h -------------------------------------------------------------------------------- /SDL/src/video/fbcon/SDL_fb3dfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/SDL_fb3dfx.c -------------------------------------------------------------------------------- /SDL/src/video/fbcon/SDL_fb3dfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/SDL_fb3dfx.h -------------------------------------------------------------------------------- /SDL/src/video/fbcon/SDL_fbelo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/SDL_fbelo.c -------------------------------------------------------------------------------- /SDL/src/video/fbcon/SDL_fbelo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/SDL_fbelo.h -------------------------------------------------------------------------------- /SDL/src/video/fbcon/SDL_fbevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/SDL_fbevents.c -------------------------------------------------------------------------------- /SDL/src/video/fbcon/SDL_fbkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/SDL_fbkeys.h -------------------------------------------------------------------------------- /SDL/src/video/fbcon/SDL_fbmatrox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/SDL_fbmatrox.c -------------------------------------------------------------------------------- /SDL/src/video/fbcon/SDL_fbmatrox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/SDL_fbmatrox.h -------------------------------------------------------------------------------- /SDL/src/video/fbcon/SDL_fbmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/SDL_fbmouse.c -------------------------------------------------------------------------------- /SDL/src/video/fbcon/SDL_fbmouse_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/SDL_fbmouse_c.h -------------------------------------------------------------------------------- /SDL/src/video/fbcon/SDL_fbriva.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/SDL_fbriva.c -------------------------------------------------------------------------------- /SDL/src/video/fbcon/SDL_fbriva.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/SDL_fbriva.h -------------------------------------------------------------------------------- /SDL/src/video/fbcon/SDL_fbvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/SDL_fbvideo.c -------------------------------------------------------------------------------- /SDL/src/video/fbcon/SDL_fbvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/SDL_fbvideo.h -------------------------------------------------------------------------------- /SDL/src/video/fbcon/matrox_mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/matrox_mmio.h -------------------------------------------------------------------------------- /SDL/src/video/fbcon/matrox_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/matrox_regs.h -------------------------------------------------------------------------------- /SDL/src/video/fbcon/riva_mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/riva_mmio.h -------------------------------------------------------------------------------- /SDL/src/video/fbcon/riva_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/fbcon/riva_regs.h -------------------------------------------------------------------------------- /SDL/src/video/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/mmx.h -------------------------------------------------------------------------------- /SDL/src/video/nds/SDL_ndsevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/nds/SDL_ndsevents.c -------------------------------------------------------------------------------- /SDL/src/video/nds/SDL_ndsevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/nds/SDL_ndsevents_c.h -------------------------------------------------------------------------------- /SDL/src/video/nds/SDL_ndsrender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/nds/SDL_ndsrender.c -------------------------------------------------------------------------------- /SDL/src/video/nds/SDL_ndsrender_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/nds/SDL_ndsrender_c.h -------------------------------------------------------------------------------- /SDL/src/video/nds/SDL_ndsvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/nds/SDL_ndsvideo.c -------------------------------------------------------------------------------- /SDL/src/video/nds/SDL_ndsvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/nds/SDL_ndsvideo.h -------------------------------------------------------------------------------- /SDL/src/video/pandora/SDL_pandora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/pandora/SDL_pandora.c -------------------------------------------------------------------------------- /SDL/src/video/pandora/SDL_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/pandora/SDL_pandora.h -------------------------------------------------------------------------------- /SDL/src/video/photon/SDL_photon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/photon/SDL_photon.c -------------------------------------------------------------------------------- /SDL/src/video/photon/SDL_photon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/photon/SDL_photon.h -------------------------------------------------------------------------------- /SDL/src/video/ps3/SDL_ps3events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/ps3/SDL_ps3events.c -------------------------------------------------------------------------------- /SDL/src/video/ps3/SDL_ps3events_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/ps3/SDL_ps3events_c.h -------------------------------------------------------------------------------- /SDL/src/video/ps3/SDL_ps3modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/ps3/SDL_ps3modes.c -------------------------------------------------------------------------------- /SDL/src/video/ps3/SDL_ps3modes_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/ps3/SDL_ps3modes_c.h -------------------------------------------------------------------------------- /SDL/src/video/ps3/SDL_ps3render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/ps3/SDL_ps3render.c -------------------------------------------------------------------------------- /SDL/src/video/ps3/SDL_ps3render_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/ps3/SDL_ps3render_c.h -------------------------------------------------------------------------------- /SDL/src/video/ps3/SDL_ps3spe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/ps3/SDL_ps3spe.c -------------------------------------------------------------------------------- /SDL/src/video/ps3/SDL_ps3spe_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/ps3/SDL_ps3spe_c.h -------------------------------------------------------------------------------- /SDL/src/video/ps3/SDL_ps3video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/ps3/SDL_ps3video.c -------------------------------------------------------------------------------- /SDL/src/video/ps3/SDL_ps3video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/ps3/SDL_ps3video.h -------------------------------------------------------------------------------- /SDL/src/video/ps3/spulibs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/ps3/spulibs/Makefile -------------------------------------------------------------------------------- /SDL/src/video/ps3/spulibs/yuv2rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/ps3/spulibs/yuv2rgb.c -------------------------------------------------------------------------------- /SDL/src/video/qnxgf/SDL_gf_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/qnxgf/SDL_gf_input.c -------------------------------------------------------------------------------- /SDL/src/video/qnxgf/SDL_gf_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/qnxgf/SDL_gf_input.h -------------------------------------------------------------------------------- /SDL/src/video/qnxgf/SDL_gf_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/qnxgf/SDL_gf_render.c -------------------------------------------------------------------------------- /SDL/src/video/qnxgf/SDL_gf_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/qnxgf/SDL_gf_render.h -------------------------------------------------------------------------------- /SDL/src/video/qnxgf/SDL_qnxgf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/qnxgf/SDL_qnxgf.c -------------------------------------------------------------------------------- /SDL/src/video/qnxgf/SDL_qnxgf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/qnxgf/SDL_qnxgf.h -------------------------------------------------------------------------------- /SDL/src/video/riscos/SDL_wimppoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/riscos/SDL_wimppoll.c -------------------------------------------------------------------------------- /SDL/src/video/sdlgenblit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/sdlgenblit.pl -------------------------------------------------------------------------------- /SDL/src/video/svga/SDL_svgaevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/svga/SDL_svgaevents.c -------------------------------------------------------------------------------- /SDL/src/video/svga/SDL_svgamouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/svga/SDL_svgamouse.c -------------------------------------------------------------------------------- /SDL/src/video/svga/SDL_svgavideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/svga/SDL_svgavideo.c -------------------------------------------------------------------------------- /SDL/src/video/svga/SDL_svgavideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/svga/SDL_svgavideo.h -------------------------------------------------------------------------------- /SDL/src/video/uikit/SDL_uikitview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/uikit/SDL_uikitview.h -------------------------------------------------------------------------------- /SDL/src/video/uikit/SDL_uikitview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/uikit/SDL_uikitview.m -------------------------------------------------------------------------------- /SDL/src/video/uikit/jumphack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/uikit/jumphack.c -------------------------------------------------------------------------------- /SDL/src/video/uikit/jumphack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/uikit/jumphack.h -------------------------------------------------------------------------------- /SDL/src/video/uikit/keyinfotable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/uikit/keyinfotable.h -------------------------------------------------------------------------------- /SDL/src/video/win32/SDL_d3drender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/win32/SDL_d3drender.c -------------------------------------------------------------------------------- /SDL/src/video/win32/SDL_d3drender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/win32/SDL_d3drender.h -------------------------------------------------------------------------------- /SDL/src/video/win32/SDL_gdirender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/win32/SDL_gdirender.c -------------------------------------------------------------------------------- /SDL/src/video/win32/SDL_gdirender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/win32/SDL_gdirender.h -------------------------------------------------------------------------------- /SDL/src/video/win32/SDL_vkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/win32/SDL_vkeys.h -------------------------------------------------------------------------------- /SDL/src/video/win32/wactab/pktdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/win32/wactab/pktdef.h -------------------------------------------------------------------------------- /SDL/src/video/win32/wactab/wintab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/win32/wactab/wintab.h -------------------------------------------------------------------------------- /SDL/src/video/win32/wmmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/win32/wmmsg.h -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11dyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11dyn.c -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11dyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11dyn.h -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11events.c -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11events.h -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11gamma.c -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11gamma.h -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11keyboard.c -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11keyboard.h -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11modes.c -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11modes.h -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11mouse.c -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11mouse.h -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11opengl.c -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11opengl.h -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11opengles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11opengles.c -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11opengles.h -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11render.c -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11render.h -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11sym.h -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11video.c -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11video.h -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11window.c -------------------------------------------------------------------------------- /SDL/src/video/x11/SDL_x11window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/SDL_x11window.h -------------------------------------------------------------------------------- /SDL/src/video/x11/imKStoUCS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/imKStoUCS.c -------------------------------------------------------------------------------- /SDL/src/video/x11/imKStoUCS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL/src/video/x11/imKStoUCS.h -------------------------------------------------------------------------------- /SDL_net/SDL_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL_net/SDL_net.h -------------------------------------------------------------------------------- /SDL_net/SDLnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL_net/SDLnet.c -------------------------------------------------------------------------------- /SDL_net/SDLnetTCP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL_net/SDLnetTCP.c -------------------------------------------------------------------------------- /SDL_net/SDLnetUDP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL_net/SDLnetUDP.c -------------------------------------------------------------------------------- /SDL_net/SDLnetselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL_net/SDLnetselect.c -------------------------------------------------------------------------------- /SDL_net/SDLnetsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/SDL_net/SDLnetsys.h -------------------------------------------------------------------------------- /configs/colortheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/configs/colortheme.json -------------------------------------------------------------------------------- /configs/dospad-ipad.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/configs/dospad-ipad.cfg -------------------------------------------------------------------------------- /configs/dospad-iphone.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/configs/dospad-iphone.cfg -------------------------------------------------------------------------------- /configs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/configs/icon.png -------------------------------------------------------------------------------- /configs/kbd11x4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/configs/kbd11x4.json -------------------------------------------------------------------------------- /configs/kbd11x4_fn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/configs/kbd11x4_fn.json -------------------------------------------------------------------------------- /configs/kbd11x5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/configs/kbd11x5.json -------------------------------------------------------------------------------- /configs/kbd11x5_fn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/configs/kbd11x5_fn.json -------------------------------------------------------------------------------- /configs/kbd11x6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/configs/kbd11x6.json -------------------------------------------------------------------------------- /configs/kbd11x6_fn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/configs/kbd11x6_fn.json -------------------------------------------------------------------------------- /configs/kbd18x5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/configs/kbd18x5.json -------------------------------------------------------------------------------- /configs/kbd18x5_fn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/configs/kbd18x5_fn.json -------------------------------------------------------------------------------- /configs/kpad4x5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/configs/kpad4x5.json -------------------------------------------------------------------------------- /configs/ui.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/configs/ui.cfg -------------------------------------------------------------------------------- /credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/credits.html -------------------------------------------------------------------------------- /diskc/CHOICE.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/CHOICE.COM -------------------------------------------------------------------------------- /diskc/PLAY.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/PLAY.BAT -------------------------------------------------------------------------------- /diskc/war2a/CHKLIST.MS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/CHKLIST.MS -------------------------------------------------------------------------------- /diskc/war2a/CONFIG.WAR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/CONFIG.WAR -------------------------------------------------------------------------------- /diskc/war2a/DATA/Maindat.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DATA/Maindat.war -------------------------------------------------------------------------------- /diskc/war2a/DATA/PATH.WAR: -------------------------------------------------------------------------------- 1 | D:\ 2 |  -------------------------------------------------------------------------------- /diskc/war2a/DATA/REZDAT.WAR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DATA/REZDAT.WAR -------------------------------------------------------------------------------- /diskc/war2a/DATA/STRDAT.WAR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DATA/STRDAT.WAR -------------------------------------------------------------------------------- /diskc/war2a/DATA/Snddat.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DATA/Snddat.war -------------------------------------------------------------------------------- /diskc/war2a/DOS4GW.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DOS4GW.EXE -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/ADLIB.MDI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/ADLIB.MDI -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/ADLIBG.MDI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/ADLIBG.MDI -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/JAMMER.DIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/JAMMER.DIG -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/MPU401.MDI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/MPU401.MDI -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/PAS.MDI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/PAS.MDI -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/PASPLUS.MDI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/PASPLUS.MDI -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/PROAUDIO.DIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/PROAUDIO.DIG -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/RAP10.DIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/RAP10.DIG -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/SB16.DIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/SB16.DIG -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/SBAWE32.MDI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/SBAWE32.MDI -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/SBLASTER.DIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/SBLASTER.DIG -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/SBLASTER.MDI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/SBLASTER.MDI -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/SBPRO.DIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/SBPRO.DIG -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/SBPRO1.MDI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/SBPRO1.MDI -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/SBPRO2.MDI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/SBPRO2.MDI -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/ULTRA.DIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/ULTRA.DIG -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/ULTRA.MDI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/ULTRA.MDI -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/WARCRAFT.AD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/WARCRAFT.AD -------------------------------------------------------------------------------- /diskc/war2a/DRIVERS/WARCRAFT.OPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/DRIVERS/WARCRAFT.OPL -------------------------------------------------------------------------------- /diskc/war2a/PREFS.WAR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/PREFS.WAR -------------------------------------------------------------------------------- /diskc/war2a/README.DOC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/README.DOC -------------------------------------------------------------------------------- /diskc/war2a/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/README.TXT -------------------------------------------------------------------------------- /diskc/war2a/SETUP.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/SETUP.EXE -------------------------------------------------------------------------------- /diskc/war2a/WAR2.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/WAR2.EXE -------------------------------------------------------------------------------- /diskc/war2a/WAR2EDIT.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/diskc/war2a/WAR2EDIT.EXE -------------------------------------------------------------------------------- /dosbox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/Makefile -------------------------------------------------------------------------------- /dosbox/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/config.h -------------------------------------------------------------------------------- /dosbox/include/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/bios.h -------------------------------------------------------------------------------- /dosbox/include/bios_disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/bios_disk.h -------------------------------------------------------------------------------- /dosbox/include/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/callback.h -------------------------------------------------------------------------------- /dosbox/include/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/control.h -------------------------------------------------------------------------------- /dosbox/include/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/cpu.h -------------------------------------------------------------------------------- /dosbox/include/cross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/cross.h -------------------------------------------------------------------------------- /dosbox/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/debug.h -------------------------------------------------------------------------------- /dosbox/include/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/dma.h -------------------------------------------------------------------------------- /dosbox/include/dos_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/dos_inc.h -------------------------------------------------------------------------------- /dosbox/include/dos_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/dos_system.h -------------------------------------------------------------------------------- /dosbox/include/dosbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/dosbox.h -------------------------------------------------------------------------------- /dosbox/include/fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/fpu.h -------------------------------------------------------------------------------- /dosbox/include/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/hardware.h -------------------------------------------------------------------------------- /dosbox/include/inout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/inout.h -------------------------------------------------------------------------------- /dosbox/include/ipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/ipx.h -------------------------------------------------------------------------------- /dosbox/include/ipxserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/ipxserver.h -------------------------------------------------------------------------------- /dosbox/include/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/joystick.h -------------------------------------------------------------------------------- /dosbox/include/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/keyboard.h -------------------------------------------------------------------------------- /dosbox/include/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/logging.h -------------------------------------------------------------------------------- /dosbox/include/mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/mapper.h -------------------------------------------------------------------------------- /dosbox/include/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/mem.h -------------------------------------------------------------------------------- /dosbox/include/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/mixer.h -------------------------------------------------------------------------------- /dosbox/include/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/modules.h -------------------------------------------------------------------------------- /dosbox/include/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/mouse.h -------------------------------------------------------------------------------- /dosbox/include/paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/paging.h -------------------------------------------------------------------------------- /dosbox/include/pic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/pic.h -------------------------------------------------------------------------------- /dosbox/include/programs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/programs.h -------------------------------------------------------------------------------- /dosbox/include/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/regs.h -------------------------------------------------------------------------------- /dosbox/include/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/render.h -------------------------------------------------------------------------------- /dosbox/include/serialport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/serialport.h -------------------------------------------------------------------------------- /dosbox/include/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/setup.h -------------------------------------------------------------------------------- /dosbox/include/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/shell.h -------------------------------------------------------------------------------- /dosbox/include/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/support.h -------------------------------------------------------------------------------- /dosbox/include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/timer.h -------------------------------------------------------------------------------- /dosbox/include/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/vga.h -------------------------------------------------------------------------------- /dosbox/include/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/include/video.h -------------------------------------------------------------------------------- /dosbox/src/cpu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/Makefile -------------------------------------------------------------------------------- /dosbox/src/cpu/callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/callback.cpp -------------------------------------------------------------------------------- /dosbox/src/cpu/core_dyn_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/core_dyn_x86.cpp -------------------------------------------------------------------------------- /dosbox/src/cpu/core_dyn_x86/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/core_dyn_x86/cache.h -------------------------------------------------------------------------------- /dosbox/src/cpu/core_dynrec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/core_dynrec.cpp -------------------------------------------------------------------------------- /dosbox/src/cpu/core_dynrec/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/core_dynrec/cache.h -------------------------------------------------------------------------------- /dosbox/src/cpu/core_full.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/core_full.cpp -------------------------------------------------------------------------------- /dosbox/src/cpu/core_full/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/core_full/load.h -------------------------------------------------------------------------------- /dosbox/src/cpu/core_full/op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/core_full/op.h -------------------------------------------------------------------------------- /dosbox/src/cpu/core_full/optable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/core_full/optable.h -------------------------------------------------------------------------------- /dosbox/src/cpu/core_full/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/core_full/save.h -------------------------------------------------------------------------------- /dosbox/src/cpu/core_full/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/core_full/string.h -------------------------------------------------------------------------------- /dosbox/src/cpu/core_full/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/core_full/support.h -------------------------------------------------------------------------------- /dosbox/src/cpu/core_normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/core_normal.cpp -------------------------------------------------------------------------------- /dosbox/src/cpu/core_normal/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/core_normal/string.h -------------------------------------------------------------------------------- /dosbox/src/cpu/core_prefetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/core_prefetch.cpp -------------------------------------------------------------------------------- /dosbox/src/cpu/core_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/core_simple.cpp -------------------------------------------------------------------------------- /dosbox/src/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/cpu.cpp -------------------------------------------------------------------------------- /dosbox/src/cpu/flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/flags.cpp -------------------------------------------------------------------------------- /dosbox/src/cpu/instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/instructions.h -------------------------------------------------------------------------------- /dosbox/src/cpu/lazyflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/lazyflags.h -------------------------------------------------------------------------------- /dosbox/src/cpu/modrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/modrm.cpp -------------------------------------------------------------------------------- /dosbox/src/cpu/modrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/modrm.h -------------------------------------------------------------------------------- /dosbox/src/cpu/paging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/cpu/paging.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/Makefile -------------------------------------------------------------------------------- /dosbox/src/dos/cdrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/cdrom.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/cdrom.h -------------------------------------------------------------------------------- /dosbox/src/dos/cdrom_aspi_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/cdrom_aspi_win32.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/cdrom_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/cdrom_image.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/cdrom_ioctl_os2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/cdrom_ioctl_os2.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/dev_con.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/dev_con.h -------------------------------------------------------------------------------- /dosbox/src/dos/dos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/dos.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/dos_classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/dos_classes.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/dos_codepages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/dos_codepages.h -------------------------------------------------------------------------------- /dosbox/src/dos/dos_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/dos_devices.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/dos_execute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/dos_execute.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/dos_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/dos_files.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/dos_ioctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/dos_ioctl.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/dos_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/dos_memory.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/dos_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/dos_misc.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/dos_mscdex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/dos_mscdex.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/dos_programs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/dos_programs.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/dos_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/dos_tables.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/drive_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/drive_cache.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/drive_fat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/drive_fat.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/drive_iso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/drive_iso.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/drive_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/drive_local.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/drive_virtual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/drive_virtual.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/drives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/drives.cpp -------------------------------------------------------------------------------- /dosbox/src/dos/drives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/drives.h -------------------------------------------------------------------------------- /dosbox/src/dos/scsidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/scsidefs.h -------------------------------------------------------------------------------- /dosbox/src/dos/wnaspi32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dos/wnaspi32.h -------------------------------------------------------------------------------- /dosbox/src/dosbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/dosbox.cpp -------------------------------------------------------------------------------- /dosbox/src/fpu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/fpu/Makefile -------------------------------------------------------------------------------- /dosbox/src/fpu/fpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/fpu/fpu.cpp -------------------------------------------------------------------------------- /dosbox/src/fpu/fpu_instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/fpu/fpu_instructions.h -------------------------------------------------------------------------------- /dosbox/src/gui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/Makefile -------------------------------------------------------------------------------- /dosbox/src/gui/dosbox_logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/dosbox_logo.h -------------------------------------------------------------------------------- /dosbox/src/gui/dosbox_splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/dosbox_splash.h -------------------------------------------------------------------------------- /dosbox/src/gui/midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/midi.cpp -------------------------------------------------------------------------------- /dosbox/src/gui/midi_alsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/midi_alsa.h -------------------------------------------------------------------------------- /dosbox/src/gui/midi_coreaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/midi_coreaudio.h -------------------------------------------------------------------------------- /dosbox/src/gui/midi_coremidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/midi_coremidi.h -------------------------------------------------------------------------------- /dosbox/src/gui/midi_oss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/midi_oss.h -------------------------------------------------------------------------------- /dosbox/src/gui/midi_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/midi_win32.h -------------------------------------------------------------------------------- /dosbox/src/gui/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/render.cpp -------------------------------------------------------------------------------- /dosbox/src/gui/render_loops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/render_loops.h -------------------------------------------------------------------------------- /dosbox/src/gui/render_scalers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/render_scalers.cpp -------------------------------------------------------------------------------- /dosbox/src/gui/render_scalers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/render_scalers.h -------------------------------------------------------------------------------- /dosbox/src/gui/render_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/render_simple.h -------------------------------------------------------------------------------- /dosbox/src/gui/render_templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/render_templates.h -------------------------------------------------------------------------------- /dosbox/src/gui/sdl_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/sdl_gui.cpp -------------------------------------------------------------------------------- /dosbox/src/gui/sdl_mapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/sdl_mapper.cpp -------------------------------------------------------------------------------- /dosbox/src/gui/sdlmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/gui/sdlmain.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/Makefile -------------------------------------------------------------------------------- /dosbox/src/hardware/adlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/adlib.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/adlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/adlib.h -------------------------------------------------------------------------------- /dosbox/src/hardware/cmos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/cmos.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/dbopl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/dbopl.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/dbopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/dbopl.h -------------------------------------------------------------------------------- /dosbox/src/hardware/disney.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/disney.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/dma.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/gameblaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/gameblaster.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/gus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/gus.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/hardware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/hardware.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/iohandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/iohandler.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/ipx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/ipx.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/ipxserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/ipxserver.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/joystick.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/keyboard.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/memory.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/mixer.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/mpu401.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/mpu401.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/opl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/opl.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/opl.h -------------------------------------------------------------------------------- /dosbox/src/hardware/pcspeaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/pcspeaker.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/pic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/pic.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/sblaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/sblaster.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/tandy_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/tandy_sound.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/timer.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/vga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/vga.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/vga_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/vga_attr.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/vga_crtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/vga_crtc.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/vga_dac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/vga_dac.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/vga_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/vga_draw.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/vga_gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/vga_gfx.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/vga_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/vga_memory.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/vga_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/vga_misc.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/vga_other.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/vga_other.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/vga_s3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/vga_s3.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/vga_seq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/vga_seq.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/vga_tseng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/vga_tseng.cpp -------------------------------------------------------------------------------- /dosbox/src/hardware/vga_xga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/hardware/vga_xga.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/Makefile -------------------------------------------------------------------------------- /dosbox/src/ints/bios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/bios.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/bios_disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/bios_disk.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/bios_keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/bios_keyboard.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/ems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/ems.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/int10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/int10.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/int10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/int10.h -------------------------------------------------------------------------------- /dosbox/src/ints/int10_char.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/int10_char.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/int10_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/int10_memory.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/int10_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/int10_misc.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/int10_modes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/int10_modes.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/int10_pal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/int10_pal.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/int10_put_pixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/int10_put_pixel.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/int10_vesa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/int10_vesa.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/int10_vptable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/int10_vptable.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/mouse.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/xms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/xms.cpp -------------------------------------------------------------------------------- /dosbox/src/ints/xms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/ints/xms.h -------------------------------------------------------------------------------- /dosbox/src/libs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/libs/Makefile -------------------------------------------------------------------------------- /dosbox/src/libs/gui_tk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/libs/gui_tk/Makefile.am -------------------------------------------------------------------------------- /dosbox/src/libs/gui_tk/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/libs/gui_tk/Makefile.in -------------------------------------------------------------------------------- /dosbox/src/libs/gui_tk/gui_tk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/libs/gui_tk/gui_tk.cpp -------------------------------------------------------------------------------- /dosbox/src/libs/gui_tk/gui_tk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/libs/gui_tk/gui_tk.h -------------------------------------------------------------------------------- /dosbox/src/libs/zmbv/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/libs/zmbv/Makefile.am -------------------------------------------------------------------------------- /dosbox/src/libs/zmbv/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/libs/zmbv/Makefile.in -------------------------------------------------------------------------------- /dosbox/src/libs/zmbv/zmbv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/libs/zmbv/zmbv.cpp -------------------------------------------------------------------------------- /dosbox/src/libs/zmbv/zmbv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/libs/zmbv/zmbv.h -------------------------------------------------------------------------------- /dosbox/src/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/misc/Makefile -------------------------------------------------------------------------------- /dosbox/src/misc/cross.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/misc/cross.cpp -------------------------------------------------------------------------------- /dosbox/src/misc/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/misc/messages.cpp -------------------------------------------------------------------------------- /dosbox/src/misc/programs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/misc/programs.cpp -------------------------------------------------------------------------------- /dosbox/src/misc/setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/misc/setup.cpp -------------------------------------------------------------------------------- /dosbox/src/misc/support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/misc/support.cpp -------------------------------------------------------------------------------- /dosbox/src/shell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/shell/Makefile -------------------------------------------------------------------------------- /dosbox/src/shell/shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/shell/shell.cpp -------------------------------------------------------------------------------- /dosbox/src/shell/shell_batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/shell/shell_batch.cpp -------------------------------------------------------------------------------- /dosbox/src/shell/shell_cmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/shell/shell_cmds.cpp -------------------------------------------------------------------------------- /dosbox/src/shell/shell_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dosbox/src/shell/shell_misc.cpp -------------------------------------------------------------------------------- /dospad-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad-Info.plist -------------------------------------------------------------------------------- /dospad.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dospad/COPYRIGHT.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/COPYRIGHT.TXT -------------------------------------------------------------------------------- /dospad/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/MainWindow.xib -------------------------------------------------------------------------------- /dospad/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /dospad/Shared/AlertPrompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/AlertPrompt.h -------------------------------------------------------------------------------- /dospad/Shared/AlertPrompt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/AlertPrompt.m -------------------------------------------------------------------------------- /dospad/Shared/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/AppDelegate.h -------------------------------------------------------------------------------- /dospad/Shared/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/AppDelegate.m -------------------------------------------------------------------------------- /dospad/Shared/ColorTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/ColorTheme.h -------------------------------------------------------------------------------- /dospad/Shared/ColorTheme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/ColorTheme.m -------------------------------------------------------------------------------- /dospad/Shared/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/Common.h -------------------------------------------------------------------------------- /dospad/Shared/ConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/ConfigManager.h -------------------------------------------------------------------------------- /dospad/Shared/ConfigManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/ConfigManager.m -------------------------------------------------------------------------------- /dospad/Shared/DosEmuThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/DosEmuThread.h -------------------------------------------------------------------------------- /dospad/Shared/DosEmuThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/DosEmuThread.m -------------------------------------------------------------------------------- /dospad/Shared/DosPadUIApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/DosPadUIApplication.h -------------------------------------------------------------------------------- /dospad/Shared/DosPadUIApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/DosPadUIApplication.m -------------------------------------------------------------------------------- /dospad/Shared/FileSystemObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/FileSystemObject.h -------------------------------------------------------------------------------- /dospad/Shared/FileSystemObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/FileSystemObject.m -------------------------------------------------------------------------------- /dospad/Shared/FloatPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/FloatPanel.h -------------------------------------------------------------------------------- /dospad/Shared/FloatPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/FloatPanel.m -------------------------------------------------------------------------------- /dospad/Shared/FloatingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/FloatingView.h -------------------------------------------------------------------------------- /dospad/Shared/FloatingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/FloatingView.m -------------------------------------------------------------------------------- /dospad/Shared/FrameskipIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/FrameskipIndicator.h -------------------------------------------------------------------------------- /dospad/Shared/FrameskipIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/FrameskipIndicator.m -------------------------------------------------------------------------------- /dospad/Shared/GamePadView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/GamePadView.h -------------------------------------------------------------------------------- /dospad/Shared/GamePadView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/GamePadView.m -------------------------------------------------------------------------------- /dospad/Shared/HoldIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/HoldIndicator.h -------------------------------------------------------------------------------- /dospad/Shared/HoldIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/HoldIndicator.m -------------------------------------------------------------------------------- /dospad/Shared/KeyLockIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/KeyLockIndicator.h -------------------------------------------------------------------------------- /dospad/Shared/KeyLockIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/KeyLockIndicator.m -------------------------------------------------------------------------------- /dospad/Shared/KeyMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/KeyMapper.h -------------------------------------------------------------------------------- /dospad/Shared/KeyMapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/KeyMapper.m -------------------------------------------------------------------------------- /dospad/Shared/KeyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/KeyView.h -------------------------------------------------------------------------------- /dospad/Shared/KeyView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/KeyView.m -------------------------------------------------------------------------------- /dospad/Shared/KeyboardView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/KeyboardView.h -------------------------------------------------------------------------------- /dospad/Shared/KeyboardView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/KeyboardView.m -------------------------------------------------------------------------------- /dospad/Shared/PianoKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/PianoKeyboard.h -------------------------------------------------------------------------------- /dospad/Shared/PianoKeyboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/PianoKeyboard.m -------------------------------------------------------------------------------- /dospad/Shared/TipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/TipView.h -------------------------------------------------------------------------------- /dospad/Shared/TipView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/TipView.m -------------------------------------------------------------------------------- /dospad/Shared/UIExtendedTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/UIExtendedTextField.h -------------------------------------------------------------------------------- /dospad/Shared/UIExtendedTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/UIExtendedTextField.m -------------------------------------------------------------------------------- /dospad/Shared/VKView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/VKView.h -------------------------------------------------------------------------------- /dospad/Shared/VKView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/VKView.m -------------------------------------------------------------------------------- /dospad/Shared/ZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/ZipArchive.h -------------------------------------------------------------------------------- /dospad/Shared/ZipArchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/ZipArchive.m -------------------------------------------------------------------------------- /dospad/Shared/cmd_history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/cmd_history.h -------------------------------------------------------------------------------- /dospad/Shared/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/keys.h -------------------------------------------------------------------------------- /dospad/Shared/keys.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/keys.m -------------------------------------------------------------------------------- /dospad/Shared/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/Shared/main.m -------------------------------------------------------------------------------- /dospad/audio-res/joystickbtn.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/audio-res/joystickbtn.wav -------------------------------------------------------------------------------- /dospad/audio-res/joystickmove.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/audio-res/joystickmove.wav -------------------------------------------------------------------------------- /dospad/audio-res/keypress.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/audio-res/keypress.wav -------------------------------------------------------------------------------- /dospad/audio-res/start-up.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/audio-res/start-up.mp3 -------------------------------------------------------------------------------- /dospad/dospad_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/dospad_Prefix.pch -------------------------------------------------------------------------------- /dospad/dospadportrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/dospadportrait.jpg -------------------------------------------------------------------------------- /dospad/dpicon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/dpicon512.png -------------------------------------------------------------------------------- /dospad/floatpanel-res/cpuwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/floatpanel-res/cpuwindow.png -------------------------------------------------------------------------------- /dospad/floatpanel-res/exitfull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/floatpanel-res/exitfull.png -------------------------------------------------------------------------------- /dospad/floatpanel-res/modejoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/floatpanel-res/modejoy.png -------------------------------------------------------------------------------- /dospad/floatpanel-res/modekeyon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/floatpanel-res/modekeyon.png -------------------------------------------------------------------------------- /dospad/floatpanel-res/modepiano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/floatpanel-res/modepiano.png -------------------------------------------------------------------------------- /dospad/floatpanel-res/mouseoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/floatpanel-res/mouseoff.png -------------------------------------------------------------------------------- /dospad/floatpanel-res/mouseon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/floatpanel-res/mouseon.png -------------------------------------------------------------------------------- /dospad/floatpanel-res/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/floatpanel-res/options.png -------------------------------------------------------------------------------- /dospad/floatpanel-res/sticky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/floatpanel-res/sticky.png -------------------------------------------------------------------------------- /dospad/floatpanel-res/sticky@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/floatpanel-res/sticky@2x.png -------------------------------------------------------------------------------- /dospad/floatpanel-res/unsticky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/floatpanel-res/unsticky.png -------------------------------------------------------------------------------- /dospad/gamepad-res/btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/btn.png -------------------------------------------------------------------------------- /dospad/gamepad-res/btnpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/btnpressed.png -------------------------------------------------------------------------------- /dospad/gamepad-res/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/button.png -------------------------------------------------------------------------------- /dospad/gamepad-res/centre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/centre.png -------------------------------------------------------------------------------- /dospad/gamepad-res/centre@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/centre@2x.png -------------------------------------------------------------------------------- /dospad/gamepad-res/dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/dpad.png -------------------------------------------------------------------------------- /dospad/gamepad-res/dpad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/dpad@2x.png -------------------------------------------------------------------------------- /dospad/gamepad-res/dpadglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/dpadglass.png -------------------------------------------------------------------------------- /dospad/gamepad-res/dpadpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/dpadpressed.png -------------------------------------------------------------------------------- /dospad/gamepad-res/east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/east.png -------------------------------------------------------------------------------- /dospad/gamepad-res/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/fire.png -------------------------------------------------------------------------------- /dospad/gamepad-res/firepressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/firepressed.png -------------------------------------------------------------------------------- /dospad/gamepad-res/hires/btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/hires/btn@2x.png -------------------------------------------------------------------------------- /dospad/gamepad-res/ipadleftside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/ipadleftside.png -------------------------------------------------------------------------------- /dospad/gamepad-res/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/light.png -------------------------------------------------------------------------------- /dospad/gamepad-res/north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/north.png -------------------------------------------------------------------------------- /dospad/gamepad-res/northeast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/northeast.png -------------------------------------------------------------------------------- /dospad/gamepad-res/northwest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/northwest.png -------------------------------------------------------------------------------- /dospad/gamepad-res/south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/south.png -------------------------------------------------------------------------------- /dospad/gamepad-res/southeast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/southeast.png -------------------------------------------------------------------------------- /dospad/gamepad-res/southwest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/southwest.png -------------------------------------------------------------------------------- /dospad/gamepad-res/west.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/gamepad-res/west.png -------------------------------------------------------------------------------- /dospad/iPad/CommandListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/iPad/CommandListView.h -------------------------------------------------------------------------------- /dospad/iPad/CommandListView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/iPad/CommandListView.m -------------------------------------------------------------------------------- /dospad/iPad/DosPadViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/iPad/DosPadViewController.h -------------------------------------------------------------------------------- /dospad/iPad/DosPadViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/iPad/DosPadViewController.m -------------------------------------------------------------------------------- /dospad/iPad/SliderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/iPad/SliderView.h -------------------------------------------------------------------------------- /dospad/iPad/SliderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/iPad/SliderView.m -------------------------------------------------------------------------------- /dospad/minizip/ChangeLogUnzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/ChangeLogUnzip -------------------------------------------------------------------------------- /dospad/minizip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/Makefile -------------------------------------------------------------------------------- /dospad/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/crypt.h -------------------------------------------------------------------------------- /dospad/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/ioapi.c -------------------------------------------------------------------------------- /dospad/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/ioapi.h -------------------------------------------------------------------------------- /dospad/minizip/iowin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/iowin32.c -------------------------------------------------------------------------------- /dospad/minizip/iowin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/iowin32.h -------------------------------------------------------------------------------- /dospad/minizip/miniunz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/miniunz.c -------------------------------------------------------------------------------- /dospad/minizip/minizip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/minizip.c -------------------------------------------------------------------------------- /dospad/minizip/mztools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/mztools.c -------------------------------------------------------------------------------- /dospad/minizip/mztools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/mztools.h -------------------------------------------------------------------------------- /dospad/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/unzip.c -------------------------------------------------------------------------------- /dospad/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/unzip.h -------------------------------------------------------------------------------- /dospad/minizip/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/zconf.h -------------------------------------------------------------------------------- /dospad/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/zip.c -------------------------------------------------------------------------------- /dospad/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/minizip/zip.h -------------------------------------------------------------------------------- /dospad/misc-res/25-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/25-keys.png -------------------------------------------------------------------------------- /dospad/misc-res/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/bar.png -------------------------------------------------------------------------------- /dospad/misc-res/dospadportrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/dospadportrait.jpg -------------------------------------------------------------------------------- /dospad/misc-res/dpnote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/dpnote.png -------------------------------------------------------------------------------- /dospad/misc-res/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/gear.png -------------------------------------------------------------------------------- /dospad/misc-res/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/gift.png -------------------------------------------------------------------------------- /dospad/misc-res/holdfinger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/holdfinger.png -------------------------------------------------------------------------------- /dospad/misc-res/idos-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/idos-portrait.jpg -------------------------------------------------------------------------------- /dospad/misc-res/kbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/kbd.png -------------------------------------------------------------------------------- /dospad/misc-res/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/keyboard.png -------------------------------------------------------------------------------- /dospad/misc-res/landbariphon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/landbariphon.png -------------------------------------------------------------------------------- /dospad/misc-res/landbariphon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/landbariphon@2x.png -------------------------------------------------------------------------------- /dospad/misc-res/leftmouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/leftmouse.png -------------------------------------------------------------------------------- /dospad/misc-res/leftmouse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/leftmouse@2x.png -------------------------------------------------------------------------------- /dospad/misc-res/longbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/longbutton.png -------------------------------------------------------------------------------- /dospad/misc-res/modesel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/modesel.png -------------------------------------------------------------------------------- /dospad/misc-res/rightmouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/rightmouse.png -------------------------------------------------------------------------------- /dospad/misc-res/rightmouse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/rightmouse@2x.png -------------------------------------------------------------------------------- /dospad/misc-res/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/slider.png -------------------------------------------------------------------------------- /dospad/misc-res/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/switch.png -------------------------------------------------------------------------------- /dospad/misc-res/switch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/switch@2x.png -------------------------------------------------------------------------------- /dospad/misc-res/switchbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/switchbutton.png -------------------------------------------------------------------------------- /dospad/misc-res/switchbutton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/dospad/misc-res/switchbutton@2x.png -------------------------------------------------------------------------------- /iDOS-Beta-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/iDOS-Beta-Info.plist -------------------------------------------------------------------------------- /iDOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/iDOS-Info.plist -------------------------------------------------------------------------------- /include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL.h -------------------------------------------------------------------------------- /include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_atomic.h -------------------------------------------------------------------------------- /include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_audio.h -------------------------------------------------------------------------------- /include/SDL_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_compat.h -------------------------------------------------------------------------------- /include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_config.h -------------------------------------------------------------------------------- /include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_copying.h -------------------------------------------------------------------------------- /include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_endian.h -------------------------------------------------------------------------------- /include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_error.h -------------------------------------------------------------------------------- /include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_events.h -------------------------------------------------------------------------------- /include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_haptic.h -------------------------------------------------------------------------------- /include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_joystick.h -------------------------------------------------------------------------------- /include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_keyboard.h -------------------------------------------------------------------------------- /include/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_keysym.h -------------------------------------------------------------------------------- /include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_loadso.h -------------------------------------------------------------------------------- /include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_main.h -------------------------------------------------------------------------------- /include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_mouse.h -------------------------------------------------------------------------------- /include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_mutex.h -------------------------------------------------------------------------------- /include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_name.h -------------------------------------------------------------------------------- /include/SDL_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_net.h -------------------------------------------------------------------------------- /include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_opengl.h -------------------------------------------------------------------------------- /include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_opengles.h -------------------------------------------------------------------------------- /include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_pixels.h -------------------------------------------------------------------------------- /include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_platform.h -------------------------------------------------------------------------------- /include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_power.h -------------------------------------------------------------------------------- /include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_quit.h -------------------------------------------------------------------------------- /include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_rect.h -------------------------------------------------------------------------------- /include/SDL_revision.h: -------------------------------------------------------------------------------- 1 | #define SDL_REVISION "hg-4429:faa9fc8e7f67" 2 | -------------------------------------------------------------------------------- /include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_rwops.h -------------------------------------------------------------------------------- /include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_scancode.h -------------------------------------------------------------------------------- /include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_stdinc.h -------------------------------------------------------------------------------- /include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_surface.h -------------------------------------------------------------------------------- /include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_syswm.h -------------------------------------------------------------------------------- /include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_thread.h -------------------------------------------------------------------------------- /include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_timer.h -------------------------------------------------------------------------------- /include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_types.h -------------------------------------------------------------------------------- /include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_version.h -------------------------------------------------------------------------------- /include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDL_video.h -------------------------------------------------------------------------------- /include/SDLnetsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/SDLnetsys.h -------------------------------------------------------------------------------- /include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/begin_code.h -------------------------------------------------------------------------------- /include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/include/close_code.h -------------------------------------------------------------------------------- /screenshots/landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/screenshots/landscape.png -------------------------------------------------------------------------------- /screenshots/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattA9K/MSDOS-for-iOS/HEAD/screenshots/portrait.png --------------------------------------------------------------------------------