├── .gitignore ├── LICENSE.txt ├── README.md ├── TODO.txt ├── linux ├── Makefile ├── build.sh ├── ctime_linux ├── include │ └── SDL2 │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_os2.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_wiz.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_sensor.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_memory.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h └── lib │ └── libSDL2.a ├── mac ├── Makefile ├── build.sh ├── ctime_mac └── resources │ ├── GBEmuIcon.icns │ ├── Info.plist │ └── SDL2.framework │ ├── Headers │ ├── Resources │ ├── SDL2 │ └── Versions │ ├── A │ ├── Headers │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_sensor.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h │ ├── Resources │ │ └── Info.plist │ └── SDL2 │ └── Current ├── resources └── GBEmuLogo.png ├── src ├── 3rdparty │ ├── GL │ │ ├── gl3w.h │ │ └── glcorearb.h │ ├── LICENSE │ ├── LICENSE_ImGui.txt │ ├── README.md │ ├── gl3w.c │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_draw.cpp │ ├── imgui_impl_metal.h │ ├── imgui_impl_metal.mm │ ├── imgui_internal.h │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── common.h ├── config.cpp ├── config.h ├── debugger.cpp ├── debugger.h ├── gbemu.cpp ├── gbemu.h ├── mac.mm ├── metal_shader_defs.h ├── sdl_debugger.cpp ├── sdl_main.cpp ├── serialize.cpp ├── shaders.metal ├── tests │ ├── test.txt │ └── unitTests.cpp └── version.h ├── version.txt └── windows ├── build.bat ├── buildtime.ctf ├── ctime_windows.exe ├── include └── SDL2 │ ├── SDL.h │ ├── SDL_assert.h │ ├── SDL_atomic.h │ ├── SDL_audio.h │ ├── SDL_bits.h │ ├── SDL_blendmode.h │ ├── SDL_clipboard.h │ ├── SDL_config.h │ ├── SDL_config.h.cmake │ ├── SDL_config.h.in │ ├── SDL_config_android.h │ ├── SDL_config_iphoneos.h │ ├── SDL_config_macosx.h │ ├── SDL_config_macosx.h.orig │ ├── SDL_config_minimal.h │ ├── SDL_config_pandora.h │ ├── SDL_config_psp.h │ ├── SDL_config_windows.h │ ├── SDL_config_winrt.h │ ├── SDL_config_wiz.h │ ├── SDL_copying.h │ ├── SDL_cpuinfo.h │ ├── SDL_egl.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_filesystem.h │ ├── SDL_gamecontroller.h │ ├── SDL_gesture.h │ ├── SDL_haptic.h │ ├── SDL_hints.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keycode.h │ ├── SDL_loadso.h │ ├── SDL_log.h │ ├── SDL_main.h │ ├── SDL_messagebox.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_opengl_glext.h │ ├── SDL_opengles.h │ ├── SDL_opengles2.h │ ├── SDL_opengles2_gl2.h │ ├── SDL_opengles2_gl2ext.h │ ├── SDL_opengles2_gl2platform.h │ ├── SDL_opengles2_khrplatform.h │ ├── SDL_pixels.h │ ├── SDL_platform.h │ ├── SDL_power.h │ ├── SDL_quit.h │ ├── SDL_rect.h │ ├── SDL_render.h │ ├── SDL_revision.h │ ├── SDL_rwops.h │ ├── SDL_scancode.h │ ├── SDL_shape.h │ ├── SDL_stdinc.h │ ├── SDL_surface.h │ ├── SDL_system.h │ ├── SDL_syswm.h │ ├── SDL_test.h │ ├── SDL_test_assert.h │ ├── SDL_test_common.h │ ├── SDL_test_compare.h │ ├── SDL_test_crc32.h │ ├── SDL_test_font.h │ ├── SDL_test_fuzzer.h │ ├── SDL_test_harness.h │ ├── SDL_test_images.h │ ├── SDL_test_log.h │ ├── SDL_test_md5.h │ ├── SDL_test_random.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_touch.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── SDL_vulkan.h │ ├── begin_code.h │ └── close_code.h ├── lib ├── SDL2.dll ├── SDL2.lib ├── SDL2main.lib └── SDL2test.lib ├── resources ├── GBEmuIcon.ico └── res.rc └── ssed.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/README.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/TODO.txt -------------------------------------------------------------------------------- /linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/Makefile -------------------------------------------------------------------------------- /linux/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/build.sh -------------------------------------------------------------------------------- /linux/ctime_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/ctime_linux -------------------------------------------------------------------------------- /linux/include/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_assert.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_atomic.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_audio.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_bits.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_blendmode.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_clipboard.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_config.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_config_android.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_config_macosx.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_config_minimal.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_config_os2.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_config_pandora.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_config_psp.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_config_windows.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_config_winrt.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_config_wiz.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_copying.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_cpuinfo.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_egl.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_endian.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_error.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_events.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_filesystem.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_gamecontroller.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_gesture.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_haptic.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_hints.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_joystick.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_keyboard.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_keycode.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_loadso.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_log.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_main.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_messagebox.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_mouse.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_mutex.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_name.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_opengl.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_opengl_glext.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_opengles.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_opengles2.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_pixels.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_platform.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_power.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_quit.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_rect.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_render.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_revision.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_rwops.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_scancode.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_sensor.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_shape.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_stdinc.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_surface.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_system.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_syswm.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_test.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_test_assert.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_test_common.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_test_compare.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_test_crc32.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_test_font.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_test_harness.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_test_images.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_test_log.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_test_md5.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_test_memory.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_test_random.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_thread.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_timer.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_touch.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_types.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_version.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_video.h -------------------------------------------------------------------------------- /linux/include/SDL2/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/SDL_vulkan.h -------------------------------------------------------------------------------- /linux/include/SDL2/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/begin_code.h -------------------------------------------------------------------------------- /linux/include/SDL2/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/include/SDL2/close_code.h -------------------------------------------------------------------------------- /linux/lib/libSDL2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/linux/lib/libSDL2.a -------------------------------------------------------------------------------- /mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/Makefile -------------------------------------------------------------------------------- /mac/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/build.sh -------------------------------------------------------------------------------- /mac/ctime_mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/ctime_mac -------------------------------------------------------------------------------- /mac/resources/GBEmuIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/GBEmuIcon.icns -------------------------------------------------------------------------------- /mac/resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/Info.plist -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/SDL2: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL2 -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_assert.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_atomic.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_audio.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_bits.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_blendmode.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_clipboard.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_config.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_config_macosx.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_copying.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_cpuinfo.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_endian.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_error.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_events.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_filesystem.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_gamecontroller.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_gesture.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_haptic.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_hints.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_joystick.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_keyboard.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_keycode.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_loadso.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_log.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_main.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_messagebox.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_mouse.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_mutex.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_name.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengl.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengl_glext.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengles.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengles2.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_pixels.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_platform.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_power.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_quit.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_rect.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_render.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_revision.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_rwops.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_scancode.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_sensor.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_shape.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_stdinc.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_surface.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_system.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_syswm.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_thread.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_timer.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_touch.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_types.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_version.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_video.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/SDL_vulkan.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/begin_code.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Headers/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Headers/close_code.h -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/A/SDL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/mac/resources/SDL2.framework/Versions/A/SDL2 -------------------------------------------------------------------------------- /mac/resources/SDL2.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /resources/GBEmuLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/resources/GBEmuLogo.png -------------------------------------------------------------------------------- /src/3rdparty/GL/gl3w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/GL/gl3w.h -------------------------------------------------------------------------------- /src/3rdparty/GL/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/GL/glcorearb.h -------------------------------------------------------------------------------- /src/3rdparty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/LICENSE -------------------------------------------------------------------------------- /src/3rdparty/LICENSE_ImGui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/LICENSE_ImGui.txt -------------------------------------------------------------------------------- /src/3rdparty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/README.md -------------------------------------------------------------------------------- /src/3rdparty/gl3w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/gl3w.c -------------------------------------------------------------------------------- /src/3rdparty/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/imconfig.h -------------------------------------------------------------------------------- /src/3rdparty/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/imgui.cpp -------------------------------------------------------------------------------- /src/3rdparty/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/imgui.h -------------------------------------------------------------------------------- /src/3rdparty/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/imgui_draw.cpp -------------------------------------------------------------------------------- /src/3rdparty/imgui_impl_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/imgui_impl_metal.h -------------------------------------------------------------------------------- /src/3rdparty/imgui_impl_metal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/imgui_impl_metal.mm -------------------------------------------------------------------------------- /src/3rdparty/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/imgui_internal.h -------------------------------------------------------------------------------- /src/3rdparty/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/imgui_widgets.cpp -------------------------------------------------------------------------------- /src/3rdparty/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/imstb_rectpack.h -------------------------------------------------------------------------------- /src/3rdparty/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/imstb_textedit.h -------------------------------------------------------------------------------- /src/3rdparty/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/3rdparty/imstb_truetype.h -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/common.h -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/config.h -------------------------------------------------------------------------------- /src/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/debugger.cpp -------------------------------------------------------------------------------- /src/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/debugger.h -------------------------------------------------------------------------------- /src/gbemu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/gbemu.cpp -------------------------------------------------------------------------------- /src/gbemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/gbemu.h -------------------------------------------------------------------------------- /src/mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/mac.mm -------------------------------------------------------------------------------- /src/metal_shader_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/metal_shader_defs.h -------------------------------------------------------------------------------- /src/sdl_debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/sdl_debugger.cpp -------------------------------------------------------------------------------- /src/sdl_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/sdl_main.cpp -------------------------------------------------------------------------------- /src/serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/serialize.cpp -------------------------------------------------------------------------------- /src/shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/shaders.metal -------------------------------------------------------------------------------- /src/tests/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/tests/test.txt -------------------------------------------------------------------------------- /src/tests/unitTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/src/tests/unitTests.cpp -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- 1 | constexpr char GBEMU_VERSION[] = "0.0.2"; 2 | -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.0.2 2 | -------------------------------------------------------------------------------- /windows/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/build.bat -------------------------------------------------------------------------------- /windows/buildtime.ctf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/buildtime.ctf -------------------------------------------------------------------------------- /windows/ctime_windows.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/ctime_windows.exe -------------------------------------------------------------------------------- /windows/include/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_assert.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_atomic.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_audio.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_bits.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_blendmode.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_clipboard.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_config.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_config.h.cmake -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_config.h.in -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_config_android.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_config_macosx.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_config_macosx.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_config_macosx.h.orig -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_config_minimal.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_config_pandora.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_config_psp.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_config_windows.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_config_winrt.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_config_wiz.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_copying.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_cpuinfo.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_egl.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_endian.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_error.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_events.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_filesystem.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_gamecontroller.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_gesture.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_haptic.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_hints.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_joystick.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_keyboard.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_keycode.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_loadso.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_log.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_main.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_messagebox.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_mouse.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_mutex.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_name.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_opengl.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_opengl_glext.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_opengles.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_opengles2.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_pixels.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_platform.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_power.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_quit.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_rect.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_render.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_revision.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_rwops.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_scancode.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_shape.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_stdinc.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_surface.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_system.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_syswm.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_test.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_test_assert.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_test_common.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_test_compare.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_test_crc32.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_test_font.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_test_harness.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_test_images.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_test_log.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_test_md5.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_test_random.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_thread.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_timer.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_touch.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_types.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_version.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_video.h -------------------------------------------------------------------------------- /windows/include/SDL2/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/SDL_vulkan.h -------------------------------------------------------------------------------- /windows/include/SDL2/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/begin_code.h -------------------------------------------------------------------------------- /windows/include/SDL2/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/include/SDL2/close_code.h -------------------------------------------------------------------------------- /windows/lib/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/lib/SDL2.dll -------------------------------------------------------------------------------- /windows/lib/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/lib/SDL2.lib -------------------------------------------------------------------------------- /windows/lib/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/lib/SDL2main.lib -------------------------------------------------------------------------------- /windows/lib/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/lib/SDL2test.lib -------------------------------------------------------------------------------- /windows/resources/GBEmuIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/resources/GBEmuIcon.ico -------------------------------------------------------------------------------- /windows/resources/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/resources/res.rc -------------------------------------------------------------------------------- /windows/ssed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanB91/GBEmu/HEAD/windows/ssed.exe --------------------------------------------------------------------------------