├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── FUNDING.yml └── workflows │ └── gearboy.yml ├── .gitignore ├── .gitlab-ci.yml ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── backers.md ├── platforms ├── README.txt ├── audio-shared │ ├── sound_queue.cpp │ └── sound_queue.h ├── bsd │ └── Makefile ├── desktop-shared │ ├── Makefile.common │ ├── Makefile.sources │ ├── application.cpp │ ├── application.h │ ├── backers.h │ ├── config.cpp │ ├── config.h │ ├── emu.cpp │ ├── emu.h │ ├── glad │ │ └── glad.h │ ├── gui.cpp │ ├── gui.h │ ├── gui_debug.cpp │ ├── gui_debug.h │ ├── gui_debug_constants.h │ ├── gui_debug_memeditor.cpp │ ├── gui_debug_memeditor.h │ ├── gui_debug_memory.cpp │ ├── gui_debug_memory.h │ ├── imgui │ │ ├── fonts │ │ │ └── RobotoMedium.h │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_opengl2.cpp │ │ ├── imgui_impl_opengl2.h │ │ ├── imgui_impl_sdl2.cpp │ │ ├── imgui_impl_sdl2.h │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ ├── imstb_truetype.h │ │ └── keyboard.h │ ├── license.h │ ├── mINI │ │ └── ini.h │ ├── macos │ │ └── fullscreen.mm │ ├── main.cpp │ ├── nfd │ │ ├── nfd.h │ │ ├── nfd_cocoa.mm │ │ ├── nfd_gtk.cpp │ │ ├── nfd_sdl2.h │ │ └── nfd_win.cpp │ ├── renderer.cpp │ ├── renderer.h │ ├── stb │ │ └── stb_image_write.h │ └── utils.h ├── gamecontrollerdb.txt ├── libretro │ ├── Makefile │ ├── Makefile.common │ ├── gearboy_libretro.info │ ├── jni │ │ ├── Android.mk │ │ └── Application.mk │ ├── libretro.cpp │ ├── libretro.h │ └── link.T ├── linux │ └── Makefile ├── macos │ ├── Info.plist │ ├── Makefile │ ├── app.entitlements │ ├── generate_icon.sh │ ├── iconfile.icns │ ├── image.png │ └── run.sh └── windows │ ├── Gearboy.manifest │ ├── Gearboy.rc │ ├── Gearboy.sln │ ├── Gearboy.vcxproj │ ├── Gearboy.vcxproj.filters │ ├── dependencies │ ├── .gitignore │ └── SDL2-2.30.6 │ │ ├── BUGS.txt │ │ ├── COPYING.txt │ │ ├── README-SDL.txt │ │ ├── README.txt │ │ ├── WhatsNew.txt │ │ ├── cmake │ │ ├── sdl2-config-version.cmake │ │ └── sdl2-config.cmake │ │ ├── docs │ │ ├── CONTRIBUTING.md │ │ ├── README-android.md │ │ ├── README-cmake.md │ │ ├── README-directfb.md │ │ ├── README-dynapi.md │ │ ├── README-emscripten.md │ │ ├── README-gdk.md │ │ ├── README-gesture.md │ │ ├── README-git.md │ │ ├── README-hg.md │ │ ├── README-ios.md │ │ ├── README-kmsbsd.md │ │ ├── README-linux.md │ │ ├── README-macos.md │ │ ├── README-n3ds.md │ │ ├── README-nacl.md │ │ ├── README-ngage.md │ │ ├── README-os2.md │ │ ├── README-pandora.md │ │ ├── README-platforms.md │ │ ├── README-porting.md │ │ ├── README-ps2.md │ │ ├── README-psp.md │ │ ├── README-raspberrypi.md │ │ ├── README-riscos.md │ │ ├── README-touch.md │ │ ├── README-versions.md │ │ ├── README-visualc.md │ │ ├── README-vita.md │ │ ├── README-wince.md │ │ ├── README-windows.md │ │ ├── README-winrt.md │ │ ├── README.md │ │ ├── doxyfile │ │ └── release_checklist.md │ │ ├── include │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.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_guid.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hidapi.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_locale.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_metal.h │ │ ├── SDL_misc.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 │ │ ├── arm64 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ └── SDL2test.lib │ │ ├── x64 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ └── SDL2test.lib │ │ └── x86 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ └── SDL2test.lib │ ├── iconfile.ico │ └── resource.h └── src ├── Audio.cpp ├── Audio.h ├── Cartridge.cpp ├── Cartridge.h ├── CommonMemoryRule.cpp ├── CommonMemoryRule.h ├── GearboyCore.cpp ├── GearboyCore.h ├── IORegistersMemoryRule.cpp ├── IORegistersMemoryRule.h ├── Input.cpp ├── Input.h ├── MBC1MemoryRule.cpp ├── MBC1MemoryRule.h ├── MBC2MemoryRule.cpp ├── MBC2MemoryRule.h ├── MBC3MemoryRule.cpp ├── MBC3MemoryRule.h ├── MBC5MemoryRule.cpp ├── MBC5MemoryRule.h ├── Memory.cpp ├── Memory.h ├── MemoryRule.cpp ├── MemoryRule.h ├── Memory_inline.h ├── MultiMBC1MemoryRule.cpp ├── MultiMBC1MemoryRule.h ├── Processor.cpp ├── Processor.h ├── Processor_inline.h ├── RomOnlyMemoryRule.cpp ├── RomOnlyMemoryRule.h ├── SixteenBitRegister.h ├── VgmRecorder.cpp ├── VgmRecorder.h ├── Video.cpp ├── Video.h ├── audio ├── Blip_Buffer.cpp ├── Blip_Buffer.h ├── Blip_Synth.h ├── Effects_Buffer.cpp ├── Effects_Buffer.h ├── Gb_Apu.cpp ├── Gb_Apu.h ├── Gb_Apu_State.cpp ├── Gb_Oscs.cpp ├── Gb_Oscs.h ├── Multi_Buffer.cpp ├── Multi_Buffer.h ├── blargg_common.h ├── blargg_config.h └── blargg_source.h ├── common.h ├── definitions.h ├── gearboy.h ├── log.h ├── miniz ├── miniz.c └── miniz.h ├── opcode_names.h ├── opcode_timing.h ├── opcodes.cpp └── opcodes_cb.cpp /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/gearboy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/.github/workflows/gearboy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/README.md -------------------------------------------------------------------------------- /backers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/backers.md -------------------------------------------------------------------------------- /platforms/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/README.txt -------------------------------------------------------------------------------- /platforms/audio-shared/sound_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/audio-shared/sound_queue.cpp -------------------------------------------------------------------------------- /platforms/audio-shared/sound_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/audio-shared/sound_queue.h -------------------------------------------------------------------------------- /platforms/bsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/bsd/Makefile -------------------------------------------------------------------------------- /platforms/desktop-shared/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/Makefile.common -------------------------------------------------------------------------------- /platforms/desktop-shared/Makefile.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/Makefile.sources -------------------------------------------------------------------------------- /platforms/desktop-shared/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/application.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/application.h -------------------------------------------------------------------------------- /platforms/desktop-shared/backers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/backers.h -------------------------------------------------------------------------------- /platforms/desktop-shared/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/config.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/config.h -------------------------------------------------------------------------------- /platforms/desktop-shared/emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/emu.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/emu.h -------------------------------------------------------------------------------- /platforms/desktop-shared/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/glad/glad.h -------------------------------------------------------------------------------- /platforms/desktop-shared/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/gui.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/gui.h -------------------------------------------------------------------------------- /platforms/desktop-shared/gui_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/gui_debug.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/gui_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/gui_debug.h -------------------------------------------------------------------------------- /platforms/desktop-shared/gui_debug_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/gui_debug_constants.h -------------------------------------------------------------------------------- /platforms/desktop-shared/gui_debug_memeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/gui_debug_memeditor.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/gui_debug_memeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/gui_debug_memeditor.h -------------------------------------------------------------------------------- /platforms/desktop-shared/gui_debug_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/gui_debug_memory.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/gui_debug_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/gui_debug_memory.h -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/fonts/RobotoMedium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/fonts/RobotoMedium.h -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/imconfig.h -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/imgui.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/imgui.h -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/imgui_impl_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/imgui_impl_sdl2.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/imgui_impl_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/imgui_impl_sdl2.h -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/imgui_internal.h -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /platforms/desktop-shared/imgui/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/imgui/keyboard.h -------------------------------------------------------------------------------- /platforms/desktop-shared/license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/license.h -------------------------------------------------------------------------------- /platforms/desktop-shared/mINI/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/mINI/ini.h -------------------------------------------------------------------------------- /platforms/desktop-shared/macos/fullscreen.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/macos/fullscreen.mm -------------------------------------------------------------------------------- /platforms/desktop-shared/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/main.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/nfd/nfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/nfd/nfd.h -------------------------------------------------------------------------------- /platforms/desktop-shared/nfd/nfd_cocoa.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/nfd/nfd_cocoa.mm -------------------------------------------------------------------------------- /platforms/desktop-shared/nfd/nfd_gtk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/nfd/nfd_gtk.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/nfd/nfd_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/nfd/nfd_sdl2.h -------------------------------------------------------------------------------- /platforms/desktop-shared/nfd/nfd_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/nfd/nfd_win.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/renderer.cpp -------------------------------------------------------------------------------- /platforms/desktop-shared/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/renderer.h -------------------------------------------------------------------------------- /platforms/desktop-shared/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/stb/stb_image_write.h -------------------------------------------------------------------------------- /platforms/desktop-shared/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/desktop-shared/utils.h -------------------------------------------------------------------------------- /platforms/gamecontrollerdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/gamecontrollerdb.txt -------------------------------------------------------------------------------- /platforms/libretro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/libretro/Makefile -------------------------------------------------------------------------------- /platforms/libretro/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/libretro/Makefile.common -------------------------------------------------------------------------------- /platforms/libretro/gearboy_libretro.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/libretro/gearboy_libretro.info -------------------------------------------------------------------------------- /platforms/libretro/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/libretro/jni/Android.mk -------------------------------------------------------------------------------- /platforms/libretro/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/libretro/jni/Application.mk -------------------------------------------------------------------------------- /platforms/libretro/libretro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/libretro/libretro.cpp -------------------------------------------------------------------------------- /platforms/libretro/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/libretro/libretro.h -------------------------------------------------------------------------------- /platforms/libretro/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/libretro/link.T -------------------------------------------------------------------------------- /platforms/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/linux/Makefile -------------------------------------------------------------------------------- /platforms/macos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/macos/Info.plist -------------------------------------------------------------------------------- /platforms/macos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/macos/Makefile -------------------------------------------------------------------------------- /platforms/macos/app.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/macos/app.entitlements -------------------------------------------------------------------------------- /platforms/macos/generate_icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/macos/generate_icon.sh -------------------------------------------------------------------------------- /platforms/macos/iconfile.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/macos/iconfile.icns -------------------------------------------------------------------------------- /platforms/macos/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/macos/image.png -------------------------------------------------------------------------------- /platforms/macos/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd "${0%/*}" 3 | ./gearboy 4 | -------------------------------------------------------------------------------- /platforms/windows/Gearboy.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/Gearboy.manifest -------------------------------------------------------------------------------- /platforms/windows/Gearboy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/Gearboy.rc -------------------------------------------------------------------------------- /platforms/windows/Gearboy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/Gearboy.sln -------------------------------------------------------------------------------- /platforms/windows/Gearboy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/Gearboy.vcxproj -------------------------------------------------------------------------------- /platforms/windows/Gearboy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/Gearboy.vcxproj.filters -------------------------------------------------------------------------------- /platforms/windows/dependencies/.gitignore: -------------------------------------------------------------------------------- 1 | !*.dll 2 | !*.exe 3 | ![Rr]elease*/ 4 | ![Bb]in 5 | -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/BUGS.txt -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/COPYING.txt -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/README-SDL.txt -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/README.txt -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/WhatsNew.txt -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/cmake/sdl2-config-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/cmake/sdl2-config-version.cmake -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/cmake/sdl2-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/cmake/sdl2-config.cmake -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-android.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-cmake.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-directfb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-directfb.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-dynapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-dynapi.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-emscripten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-emscripten.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-gdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-gdk.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-gesture.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-git.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-hg.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-ios.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-kmsbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-kmsbsd.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-linux.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-macos.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-n3ds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-n3ds.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-nacl.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-ngage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-ngage.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-os2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-os2.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-pandora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-pandora.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-platforms.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-porting.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-ps2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-ps2.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-psp.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-raspberrypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-raspberrypi.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-riscos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-riscos.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-touch.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-versions.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-visualc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-visualc.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-vita.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-vita.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-wince.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-windows.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README-winrt.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/README.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/doxyfile -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/docs/release_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/docs/release_checklist.md -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_assert.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_atomic.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_audio.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_bits.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_blendmode.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_clipboard.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_config.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_egl.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_endian.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_error.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_events.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_filesystem.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_gesture.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_guid.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_haptic.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_hidapi.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_hints.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_joystick.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_keyboard.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_keycode.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_loadso.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_locale.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_log.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_main.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_messagebox.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_metal.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_misc.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_mouse.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_mutex.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_name.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengl.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengl_glext.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_pixels.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_platform.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_power.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_quit.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_rect.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_render.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_revision.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_rwops.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_scancode.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_sensor.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_shape.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_stdinc.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_surface.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_system.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_syswm.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_assert.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_common.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_compare.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_font.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_harness.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_images.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_log.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_md5.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_memory.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_test_random.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_thread.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_timer.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_touch.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_types.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_version.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_video.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/SDL_vulkan.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/begin_code.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/include/close_code.h -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2.dll -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2main.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/arm64/SDL2test.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2main.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x64/SDL2test.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2main.lib -------------------------------------------------------------------------------- /platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/dependencies/SDL2-2.30.6/lib/x86/SDL2test.lib -------------------------------------------------------------------------------- /platforms/windows/iconfile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/iconfile.ico -------------------------------------------------------------------------------- /platforms/windows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/platforms/windows/resource.h -------------------------------------------------------------------------------- /src/Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/Audio.cpp -------------------------------------------------------------------------------- /src/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/Audio.h -------------------------------------------------------------------------------- /src/Cartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/Cartridge.cpp -------------------------------------------------------------------------------- /src/Cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/Cartridge.h -------------------------------------------------------------------------------- /src/CommonMemoryRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/CommonMemoryRule.cpp -------------------------------------------------------------------------------- /src/CommonMemoryRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/CommonMemoryRule.h -------------------------------------------------------------------------------- /src/GearboyCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/GearboyCore.cpp -------------------------------------------------------------------------------- /src/GearboyCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/GearboyCore.h -------------------------------------------------------------------------------- /src/IORegistersMemoryRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/IORegistersMemoryRule.cpp -------------------------------------------------------------------------------- /src/IORegistersMemoryRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/IORegistersMemoryRule.h -------------------------------------------------------------------------------- /src/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/Input.cpp -------------------------------------------------------------------------------- /src/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/Input.h -------------------------------------------------------------------------------- /src/MBC1MemoryRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/MBC1MemoryRule.cpp -------------------------------------------------------------------------------- /src/MBC1MemoryRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/MBC1MemoryRule.h -------------------------------------------------------------------------------- /src/MBC2MemoryRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/MBC2MemoryRule.cpp -------------------------------------------------------------------------------- /src/MBC2MemoryRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/MBC2MemoryRule.h -------------------------------------------------------------------------------- /src/MBC3MemoryRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/MBC3MemoryRule.cpp -------------------------------------------------------------------------------- /src/MBC3MemoryRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/MBC3MemoryRule.h -------------------------------------------------------------------------------- /src/MBC5MemoryRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/MBC5MemoryRule.cpp -------------------------------------------------------------------------------- /src/MBC5MemoryRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/MBC5MemoryRule.h -------------------------------------------------------------------------------- /src/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/Memory.cpp -------------------------------------------------------------------------------- /src/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/Memory.h -------------------------------------------------------------------------------- /src/MemoryRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/MemoryRule.cpp -------------------------------------------------------------------------------- /src/MemoryRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/MemoryRule.h -------------------------------------------------------------------------------- /src/Memory_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/Memory_inline.h -------------------------------------------------------------------------------- /src/MultiMBC1MemoryRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/MultiMBC1MemoryRule.cpp -------------------------------------------------------------------------------- /src/MultiMBC1MemoryRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/MultiMBC1MemoryRule.h -------------------------------------------------------------------------------- /src/Processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/Processor.cpp -------------------------------------------------------------------------------- /src/Processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/Processor.h -------------------------------------------------------------------------------- /src/Processor_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/Processor_inline.h -------------------------------------------------------------------------------- /src/RomOnlyMemoryRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/RomOnlyMemoryRule.cpp -------------------------------------------------------------------------------- /src/RomOnlyMemoryRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/RomOnlyMemoryRule.h -------------------------------------------------------------------------------- /src/SixteenBitRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/SixteenBitRegister.h -------------------------------------------------------------------------------- /src/VgmRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/VgmRecorder.cpp -------------------------------------------------------------------------------- /src/VgmRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/VgmRecorder.h -------------------------------------------------------------------------------- /src/Video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/Video.cpp -------------------------------------------------------------------------------- /src/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/Video.h -------------------------------------------------------------------------------- /src/audio/Blip_Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/audio/Blip_Buffer.cpp -------------------------------------------------------------------------------- /src/audio/Blip_Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/audio/Blip_Buffer.h -------------------------------------------------------------------------------- /src/audio/Blip_Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/audio/Blip_Synth.h -------------------------------------------------------------------------------- /src/audio/Effects_Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/audio/Effects_Buffer.cpp -------------------------------------------------------------------------------- /src/audio/Effects_Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/audio/Effects_Buffer.h -------------------------------------------------------------------------------- /src/audio/Gb_Apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/audio/Gb_Apu.cpp -------------------------------------------------------------------------------- /src/audio/Gb_Apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/audio/Gb_Apu.h -------------------------------------------------------------------------------- /src/audio/Gb_Apu_State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/audio/Gb_Apu_State.cpp -------------------------------------------------------------------------------- /src/audio/Gb_Oscs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/audio/Gb_Oscs.cpp -------------------------------------------------------------------------------- /src/audio/Gb_Oscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/audio/Gb_Oscs.h -------------------------------------------------------------------------------- /src/audio/Multi_Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/audio/Multi_Buffer.cpp -------------------------------------------------------------------------------- /src/audio/Multi_Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/audio/Multi_Buffer.h -------------------------------------------------------------------------------- /src/audio/blargg_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/audio/blargg_common.h -------------------------------------------------------------------------------- /src/audio/blargg_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/audio/blargg_config.h -------------------------------------------------------------------------------- /src/audio/blargg_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/audio/blargg_source.h -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/common.h -------------------------------------------------------------------------------- /src/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/definitions.h -------------------------------------------------------------------------------- /src/gearboy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/gearboy.h -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/log.h -------------------------------------------------------------------------------- /src/miniz/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/miniz/miniz.c -------------------------------------------------------------------------------- /src/miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/miniz/miniz.h -------------------------------------------------------------------------------- /src/opcode_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/opcode_names.h -------------------------------------------------------------------------------- /src/opcode_timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/opcode_timing.h -------------------------------------------------------------------------------- /src/opcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/opcodes.cpp -------------------------------------------------------------------------------- /src/opcodes_cb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhelius/Gearboy/HEAD/src/opcodes_cb.cpp --------------------------------------------------------------------------------