├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── asm ├── Audio2 │ ├── .gitignore │ ├── Makefile │ ├── acp_dynawave.asm │ ├── acp_melodic.asm │ ├── acp_player_test.gtr │ ├── acp_saw_test.asm │ ├── acp_sine_test.asm │ ├── acp_square_test.asm │ ├── bad-apple-excerpt.mid │ ├── bad-apple-excerpt_alltracks.gtm │ ├── bad-apple-fullspeed.mid │ ├── bad-apple-fullspeed_alltracks.gtm │ ├── bad-apple-fullspeed_alltracks.gtm.deflate │ ├── bad-apple-v2_alltracks.gtm │ ├── bad-apple-v2_alltracks.gtm.deflate │ ├── bad-apple.mid │ ├── bad-apple_alltracks.gtm │ ├── dynawave.acp │ ├── dynawave.acp.deflate │ ├── inflate_e000_0200.obx │ ├── loader.asm │ ├── megalo1.mid │ ├── megalo1_alltracks.gtm │ ├── megalo1_alltracks.gtm.deflate │ ├── midiconvert.js │ ├── multichannel_test.asm │ ├── ode2joy.gtm │ ├── package.json │ ├── pitches.dat │ ├── player.asm │ └── random_alltracks.gtm.deflate ├── BadApple │ ├── Makefile │ ├── bad-apple-fullspeed_alltracks.gtm.deflate │ ├── bad-apple-v2_alltracks.gtm │ ├── bad-apple-v2_alltracks.gtm.deflate │ ├── bad_apple_frames.dat │ ├── badapple.asm │ ├── badapple.gtbs │ ├── badapple.gtr │ ├── badapple.gtr.bankff │ ├── dynawave.acp.deflate │ ├── inflate_e000_0200.obx │ ├── padding8k │ ├── pitches.dat │ └── tmp ├── BlitterTest │ ├── blittest.asm │ ├── blittest.gtr │ ├── gamesprites.gtg.deflate │ └── inflate_e000_0200.obx ├── SoundTest │ ├── README.md │ ├── inflate_e000.obx │ ├── mainscreen.bmp │ ├── mainscreen.gtg │ ├── mainscreen.gtg.deflate │ ├── samples3.raw.deflate │ ├── screenshot.png │ └── soundtest.asm └── Tutorial │ ├── 00_draw_a_pixel.asm │ ├── 00_draw_a_pixel.gtr │ ├── 01_draw_colored_box.asm │ ├── 01_draw_colored_box.gtr │ ├── 02_draw_sprites.asm │ ├── 02_draw_sprites.gtr │ ├── 03_game_loop.asm │ ├── 03_game_loop.gtr │ ├── 04_gamepad_input.asm │ ├── 04_gamepad_input.gtr │ ├── 05_audio.asm │ ├── 05_audio.gtr │ ├── 06_rom_page_A.asm │ ├── 06_rom_page_A.bin │ ├── 06_rom_page_A.gtr.bank80 │ ├── 06_rom_page_B.asm │ ├── 06_rom_page_B.bin │ ├── 06_rom_page_B.gtr.bank81 │ ├── 06_rom_pages.asm │ ├── 06_rom_pages.gtr │ ├── 06_rom_pages.gtr.bankFF │ ├── 06_rom_pages.sav │ ├── Makefile │ ├── README.md │ ├── assets │ ├── Makefile │ ├── cubicle.bmp │ ├── cubicle.gtg.deflate │ ├── gametank.bmp │ ├── gametank.gtg.deflate │ ├── inflate_e000_0200.obx │ ├── mapA.map │ ├── mapA.pas │ ├── mapB.map │ ├── mapB.pas │ ├── pitches.dat │ ├── sprites.bmp │ ├── square.asm │ └── square.o.deflate │ ├── blank_template.asm │ ├── blank_template.gtr │ └── filler.banks ├── img ├── controller-outline.png ├── simplelevel.PNG └── spritesheet.PNG ├── misc ├── GAMETANK_HDMI.act ├── GAMETANK_HICON.act ├── GAMETANK_REAL.act └── GAMETANK_WRONG.act ├── res └── font.bmp ├── roms ├── badapple.gtr ├── colortest.gtr ├── cubicle.gtr ├── hello.gtr └── tetris.gtr ├── src ├── SDL_inc.h ├── audio_coprocessor.cpp ├── audio_coprocessor.h ├── blitter.cpp ├── blitter.h ├── data │ └── controller_outline.h ├── devtools │ ├── base_window.cpp │ ├── base_window.h │ ├── breakpoints.cpp │ ├── breakpoints.h │ ├── controller_options_window.cpp │ ├── controller_options_window.h │ ├── debug_window.cpp │ ├── debug_window.h │ ├── disassembler.cpp │ ├── disassembler.h │ ├── imgui-combo-filter.cpp │ ├── imgui-combo-filter.h │ ├── mem_browser_window.cpp │ ├── mem_browser_window.h │ ├── memory_map.cpp │ ├── memory_map.h │ ├── patching_window.cpp │ ├── patching_window.h │ ├── profiler.cpp │ ├── profiler.h │ ├── profiler_window.cpp │ ├── profiler_window.h │ ├── source_map.cpp │ ├── source_map.h │ ├── stepping_window.cpp │ ├── stepping_window.h │ ├── vram_window.cpp │ └── vram_window.h ├── emulator_config.cpp ├── emulator_config.h ├── font.cpp ├── game_config.cpp ├── game_config.h ├── gametank_palette.h ├── gte.cpp ├── imgui │ ├── backends │ │ ├── imgui_impl_sdl2.cpp │ │ ├── imgui_impl_sdl2.h │ │ ├── imgui_impl_sdlrenderer2.cpp │ │ └── imgui_impl_sdlrenderer2.h │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── joystick_adapter.cpp ├── joystick_adapter.h ├── joystick_config.cpp ├── joystick_config.h ├── mos6502 │ ├── LICENSE.txt │ ├── README.md │ ├── mos6502.cpp │ └── mos6502.h ├── palette.cpp ├── palette.h ├── stb │ └── stb_image.h ├── system_state.h ├── timekeeper.cpp ├── timekeeper.h ├── tinyfd │ ├── tinyfiledialogs.c │ └── tinyfiledialogs.h ├── toml │ └── toml.hpp ├── ui │ ├── ui_utils.cpp │ └── ui_utils.h └── whereami │ ├── whereami.c │ └── whereami.h └── web ├── embedded.html ├── shell.html └── static └── gamepad.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/README.md -------------------------------------------------------------------------------- /asm/Audio2/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /asm/Audio2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/Makefile -------------------------------------------------------------------------------- /asm/Audio2/acp_dynawave.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/acp_dynawave.asm -------------------------------------------------------------------------------- /asm/Audio2/acp_melodic.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/acp_melodic.asm -------------------------------------------------------------------------------- /asm/Audio2/acp_player_test.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/acp_player_test.gtr -------------------------------------------------------------------------------- /asm/Audio2/acp_saw_test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/acp_saw_test.asm -------------------------------------------------------------------------------- /asm/Audio2/acp_sine_test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/acp_sine_test.asm -------------------------------------------------------------------------------- /asm/Audio2/acp_square_test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/acp_square_test.asm -------------------------------------------------------------------------------- /asm/Audio2/bad-apple-excerpt.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/bad-apple-excerpt.mid -------------------------------------------------------------------------------- /asm/Audio2/bad-apple-excerpt_alltracks.gtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/bad-apple-excerpt_alltracks.gtm -------------------------------------------------------------------------------- /asm/Audio2/bad-apple-fullspeed.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/bad-apple-fullspeed.mid -------------------------------------------------------------------------------- /asm/Audio2/bad-apple-fullspeed_alltracks.gtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/bad-apple-fullspeed_alltracks.gtm -------------------------------------------------------------------------------- /asm/Audio2/bad-apple-fullspeed_alltracks.gtm.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/bad-apple-fullspeed_alltracks.gtm.deflate -------------------------------------------------------------------------------- /asm/Audio2/bad-apple-v2_alltracks.gtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/bad-apple-v2_alltracks.gtm -------------------------------------------------------------------------------- /asm/Audio2/bad-apple-v2_alltracks.gtm.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/bad-apple-v2_alltracks.gtm.deflate -------------------------------------------------------------------------------- /asm/Audio2/bad-apple.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/bad-apple.mid -------------------------------------------------------------------------------- /asm/Audio2/bad-apple_alltracks.gtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/bad-apple_alltracks.gtm -------------------------------------------------------------------------------- /asm/Audio2/dynawave.acp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/dynawave.acp -------------------------------------------------------------------------------- /asm/Audio2/dynawave.acp.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/dynawave.acp.deflate -------------------------------------------------------------------------------- /asm/Audio2/inflate_e000_0200.obx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/inflate_e000_0200.obx -------------------------------------------------------------------------------- /asm/Audio2/loader.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/loader.asm -------------------------------------------------------------------------------- /asm/Audio2/megalo1.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/megalo1.mid -------------------------------------------------------------------------------- /asm/Audio2/megalo1_alltracks.gtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/megalo1_alltracks.gtm -------------------------------------------------------------------------------- /asm/Audio2/megalo1_alltracks.gtm.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/megalo1_alltracks.gtm.deflate -------------------------------------------------------------------------------- /asm/Audio2/midiconvert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/midiconvert.js -------------------------------------------------------------------------------- /asm/Audio2/multichannel_test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/multichannel_test.asm -------------------------------------------------------------------------------- /asm/Audio2/ode2joy.gtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/ode2joy.gtm -------------------------------------------------------------------------------- /asm/Audio2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/package.json -------------------------------------------------------------------------------- /asm/Audio2/pitches.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/pitches.dat -------------------------------------------------------------------------------- /asm/Audio2/player.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/player.asm -------------------------------------------------------------------------------- /asm/Audio2/random_alltracks.gtm.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Audio2/random_alltracks.gtm.deflate -------------------------------------------------------------------------------- /asm/BadApple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BadApple/Makefile -------------------------------------------------------------------------------- /asm/BadApple/bad-apple-fullspeed_alltracks.gtm.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BadApple/bad-apple-fullspeed_alltracks.gtm.deflate -------------------------------------------------------------------------------- /asm/BadApple/bad-apple-v2_alltracks.gtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BadApple/bad-apple-v2_alltracks.gtm -------------------------------------------------------------------------------- /asm/BadApple/bad-apple-v2_alltracks.gtm.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BadApple/bad-apple-v2_alltracks.gtm.deflate -------------------------------------------------------------------------------- /asm/BadApple/bad_apple_frames.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BadApple/bad_apple_frames.dat -------------------------------------------------------------------------------- /asm/BadApple/badapple.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BadApple/badapple.asm -------------------------------------------------------------------------------- /asm/BadApple/badapple.gtbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BadApple/badapple.gtbs -------------------------------------------------------------------------------- /asm/BadApple/badapple.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BadApple/badapple.gtr -------------------------------------------------------------------------------- /asm/BadApple/badapple.gtr.bankff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BadApple/badapple.gtr.bankff -------------------------------------------------------------------------------- /asm/BadApple/dynawave.acp.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BadApple/dynawave.acp.deflate -------------------------------------------------------------------------------- /asm/BadApple/inflate_e000_0200.obx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BadApple/inflate_e000_0200.obx -------------------------------------------------------------------------------- /asm/BadApple/padding8k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BadApple/padding8k -------------------------------------------------------------------------------- /asm/BadApple/pitches.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BadApple/pitches.dat -------------------------------------------------------------------------------- /asm/BadApple/tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BadApple/tmp -------------------------------------------------------------------------------- /asm/BlitterTest/blittest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BlitterTest/blittest.asm -------------------------------------------------------------------------------- /asm/BlitterTest/blittest.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BlitterTest/blittest.gtr -------------------------------------------------------------------------------- /asm/BlitterTest/gamesprites.gtg.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BlitterTest/gamesprites.gtg.deflate -------------------------------------------------------------------------------- /asm/BlitterTest/inflate_e000_0200.obx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/BlitterTest/inflate_e000_0200.obx -------------------------------------------------------------------------------- /asm/SoundTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/SoundTest/README.md -------------------------------------------------------------------------------- /asm/SoundTest/inflate_e000.obx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/SoundTest/inflate_e000.obx -------------------------------------------------------------------------------- /asm/SoundTest/mainscreen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/SoundTest/mainscreen.bmp -------------------------------------------------------------------------------- /asm/SoundTest/mainscreen.gtg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/SoundTest/mainscreen.gtg -------------------------------------------------------------------------------- /asm/SoundTest/mainscreen.gtg.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/SoundTest/mainscreen.gtg.deflate -------------------------------------------------------------------------------- /asm/SoundTest/samples3.raw.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/SoundTest/samples3.raw.deflate -------------------------------------------------------------------------------- /asm/SoundTest/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/SoundTest/screenshot.png -------------------------------------------------------------------------------- /asm/SoundTest/soundtest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/SoundTest/soundtest.asm -------------------------------------------------------------------------------- /asm/Tutorial/00_draw_a_pixel.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/00_draw_a_pixel.asm -------------------------------------------------------------------------------- /asm/Tutorial/00_draw_a_pixel.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/00_draw_a_pixel.gtr -------------------------------------------------------------------------------- /asm/Tutorial/01_draw_colored_box.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/01_draw_colored_box.asm -------------------------------------------------------------------------------- /asm/Tutorial/01_draw_colored_box.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/01_draw_colored_box.gtr -------------------------------------------------------------------------------- /asm/Tutorial/02_draw_sprites.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/02_draw_sprites.asm -------------------------------------------------------------------------------- /asm/Tutorial/02_draw_sprites.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/02_draw_sprites.gtr -------------------------------------------------------------------------------- /asm/Tutorial/03_game_loop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/03_game_loop.asm -------------------------------------------------------------------------------- /asm/Tutorial/03_game_loop.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/03_game_loop.gtr -------------------------------------------------------------------------------- /asm/Tutorial/04_gamepad_input.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/04_gamepad_input.asm -------------------------------------------------------------------------------- /asm/Tutorial/04_gamepad_input.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/04_gamepad_input.gtr -------------------------------------------------------------------------------- /asm/Tutorial/05_audio.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/05_audio.asm -------------------------------------------------------------------------------- /asm/Tutorial/05_audio.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/05_audio.gtr -------------------------------------------------------------------------------- /asm/Tutorial/06_rom_page_A.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/06_rom_page_A.asm -------------------------------------------------------------------------------- /asm/Tutorial/06_rom_page_A.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/06_rom_page_A.bin -------------------------------------------------------------------------------- /asm/Tutorial/06_rom_page_A.gtr.bank80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/06_rom_page_A.gtr.bank80 -------------------------------------------------------------------------------- /asm/Tutorial/06_rom_page_B.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/06_rom_page_B.asm -------------------------------------------------------------------------------- /asm/Tutorial/06_rom_page_B.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/06_rom_page_B.bin -------------------------------------------------------------------------------- /asm/Tutorial/06_rom_page_B.gtr.bank81: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/06_rom_page_B.gtr.bank81 -------------------------------------------------------------------------------- /asm/Tutorial/06_rom_pages.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/06_rom_pages.asm -------------------------------------------------------------------------------- /asm/Tutorial/06_rom_pages.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/06_rom_pages.gtr -------------------------------------------------------------------------------- /asm/Tutorial/06_rom_pages.gtr.bankFF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/06_rom_pages.gtr.bankFF -------------------------------------------------------------------------------- /asm/Tutorial/06_rom_pages.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/06_rom_pages.sav -------------------------------------------------------------------------------- /asm/Tutorial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/Makefile -------------------------------------------------------------------------------- /asm/Tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/README.md -------------------------------------------------------------------------------- /asm/Tutorial/assets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/assets/Makefile -------------------------------------------------------------------------------- /asm/Tutorial/assets/cubicle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/assets/cubicle.bmp -------------------------------------------------------------------------------- /asm/Tutorial/assets/cubicle.gtg.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/assets/cubicle.gtg.deflate -------------------------------------------------------------------------------- /asm/Tutorial/assets/gametank.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/assets/gametank.bmp -------------------------------------------------------------------------------- /asm/Tutorial/assets/gametank.gtg.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/assets/gametank.gtg.deflate -------------------------------------------------------------------------------- /asm/Tutorial/assets/inflate_e000_0200.obx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/assets/inflate_e000_0200.obx -------------------------------------------------------------------------------- /asm/Tutorial/assets/mapA.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/assets/mapA.map -------------------------------------------------------------------------------- /asm/Tutorial/assets/mapA.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/assets/mapA.pas -------------------------------------------------------------------------------- /asm/Tutorial/assets/mapB.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/assets/mapB.map -------------------------------------------------------------------------------- /asm/Tutorial/assets/mapB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/assets/mapB.pas -------------------------------------------------------------------------------- /asm/Tutorial/assets/pitches.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/assets/pitches.dat -------------------------------------------------------------------------------- /asm/Tutorial/assets/sprites.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/assets/sprites.bmp -------------------------------------------------------------------------------- /asm/Tutorial/assets/square.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/assets/square.asm -------------------------------------------------------------------------------- /asm/Tutorial/assets/square.o.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/assets/square.o.deflate -------------------------------------------------------------------------------- /asm/Tutorial/blank_template.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/blank_template.asm -------------------------------------------------------------------------------- /asm/Tutorial/blank_template.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/blank_template.gtr -------------------------------------------------------------------------------- /asm/Tutorial/filler.banks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/asm/Tutorial/filler.banks -------------------------------------------------------------------------------- /img/controller-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/img/controller-outline.png -------------------------------------------------------------------------------- /img/simplelevel.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/img/simplelevel.PNG -------------------------------------------------------------------------------- /img/spritesheet.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/img/spritesheet.PNG -------------------------------------------------------------------------------- /misc/GAMETANK_HDMI.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/misc/GAMETANK_HDMI.act -------------------------------------------------------------------------------- /misc/GAMETANK_HICON.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/misc/GAMETANK_HICON.act -------------------------------------------------------------------------------- /misc/GAMETANK_REAL.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/misc/GAMETANK_REAL.act -------------------------------------------------------------------------------- /misc/GAMETANK_WRONG.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/misc/GAMETANK_WRONG.act -------------------------------------------------------------------------------- /res/font.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/res/font.bmp -------------------------------------------------------------------------------- /roms/badapple.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/roms/badapple.gtr -------------------------------------------------------------------------------- /roms/colortest.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/roms/colortest.gtr -------------------------------------------------------------------------------- /roms/cubicle.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/roms/cubicle.gtr -------------------------------------------------------------------------------- /roms/hello.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/roms/hello.gtr -------------------------------------------------------------------------------- /roms/tetris.gtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/roms/tetris.gtr -------------------------------------------------------------------------------- /src/SDL_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/SDL_inc.h -------------------------------------------------------------------------------- /src/audio_coprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/audio_coprocessor.cpp -------------------------------------------------------------------------------- /src/audio_coprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/audio_coprocessor.h -------------------------------------------------------------------------------- /src/blitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/blitter.cpp -------------------------------------------------------------------------------- /src/blitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/blitter.h -------------------------------------------------------------------------------- /src/data/controller_outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/data/controller_outline.h -------------------------------------------------------------------------------- /src/devtools/base_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/base_window.cpp -------------------------------------------------------------------------------- /src/devtools/base_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/base_window.h -------------------------------------------------------------------------------- /src/devtools/breakpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/breakpoints.cpp -------------------------------------------------------------------------------- /src/devtools/breakpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/breakpoints.h -------------------------------------------------------------------------------- /src/devtools/controller_options_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/controller_options_window.cpp -------------------------------------------------------------------------------- /src/devtools/controller_options_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/controller_options_window.h -------------------------------------------------------------------------------- /src/devtools/debug_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/debug_window.cpp -------------------------------------------------------------------------------- /src/devtools/debug_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/debug_window.h -------------------------------------------------------------------------------- /src/devtools/disassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/disassembler.cpp -------------------------------------------------------------------------------- /src/devtools/disassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/disassembler.h -------------------------------------------------------------------------------- /src/devtools/imgui-combo-filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/imgui-combo-filter.cpp -------------------------------------------------------------------------------- /src/devtools/imgui-combo-filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/imgui-combo-filter.h -------------------------------------------------------------------------------- /src/devtools/mem_browser_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/mem_browser_window.cpp -------------------------------------------------------------------------------- /src/devtools/mem_browser_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/mem_browser_window.h -------------------------------------------------------------------------------- /src/devtools/memory_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/memory_map.cpp -------------------------------------------------------------------------------- /src/devtools/memory_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/memory_map.h -------------------------------------------------------------------------------- /src/devtools/patching_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/patching_window.cpp -------------------------------------------------------------------------------- /src/devtools/patching_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/patching_window.h -------------------------------------------------------------------------------- /src/devtools/profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/profiler.cpp -------------------------------------------------------------------------------- /src/devtools/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/profiler.h -------------------------------------------------------------------------------- /src/devtools/profiler_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/profiler_window.cpp -------------------------------------------------------------------------------- /src/devtools/profiler_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/profiler_window.h -------------------------------------------------------------------------------- /src/devtools/source_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/source_map.cpp -------------------------------------------------------------------------------- /src/devtools/source_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/source_map.h -------------------------------------------------------------------------------- /src/devtools/stepping_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/stepping_window.cpp -------------------------------------------------------------------------------- /src/devtools/stepping_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/stepping_window.h -------------------------------------------------------------------------------- /src/devtools/vram_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/vram_window.cpp -------------------------------------------------------------------------------- /src/devtools/vram_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/devtools/vram_window.h -------------------------------------------------------------------------------- /src/emulator_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/emulator_config.cpp -------------------------------------------------------------------------------- /src/emulator_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/emulator_config.h -------------------------------------------------------------------------------- /src/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/font.cpp -------------------------------------------------------------------------------- /src/game_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/game_config.cpp -------------------------------------------------------------------------------- /src/game_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/game_config.h -------------------------------------------------------------------------------- /src/gametank_palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/gametank_palette.h -------------------------------------------------------------------------------- /src/gte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/gte.cpp -------------------------------------------------------------------------------- /src/imgui/backends/imgui_impl_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/imgui/backends/imgui_impl_sdl2.cpp -------------------------------------------------------------------------------- /src/imgui/backends/imgui_impl_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/imgui/backends/imgui_impl_sdl2.h -------------------------------------------------------------------------------- /src/imgui/backends/imgui_impl_sdlrenderer2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/imgui/backends/imgui_impl_sdlrenderer2.cpp -------------------------------------------------------------------------------- /src/imgui/backends/imgui_impl_sdlrenderer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/imgui/backends/imgui_impl_sdlrenderer2.h -------------------------------------------------------------------------------- /src/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/imgui/imconfig.h -------------------------------------------------------------------------------- /src/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/imgui/imgui.cpp -------------------------------------------------------------------------------- /src/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/imgui/imgui.h -------------------------------------------------------------------------------- /src/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/imgui/imgui_internal.h -------------------------------------------------------------------------------- /src/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /src/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /src/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /src/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /src/joystick_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/joystick_adapter.cpp -------------------------------------------------------------------------------- /src/joystick_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/joystick_adapter.h -------------------------------------------------------------------------------- /src/joystick_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/joystick_config.cpp -------------------------------------------------------------------------------- /src/joystick_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/joystick_config.h -------------------------------------------------------------------------------- /src/mos6502/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/mos6502/LICENSE.txt -------------------------------------------------------------------------------- /src/mos6502/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/mos6502/README.md -------------------------------------------------------------------------------- /src/mos6502/mos6502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/mos6502/mos6502.cpp -------------------------------------------------------------------------------- /src/mos6502/mos6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/mos6502/mos6502.h -------------------------------------------------------------------------------- /src/palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/palette.cpp -------------------------------------------------------------------------------- /src/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/palette.h -------------------------------------------------------------------------------- /src/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/stb/stb_image.h -------------------------------------------------------------------------------- /src/system_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/system_state.h -------------------------------------------------------------------------------- /src/timekeeper.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/timekeeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/timekeeper.h -------------------------------------------------------------------------------- /src/tinyfd/tinyfiledialogs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/tinyfd/tinyfiledialogs.c -------------------------------------------------------------------------------- /src/tinyfd/tinyfiledialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/tinyfd/tinyfiledialogs.h -------------------------------------------------------------------------------- /src/toml/toml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/toml/toml.hpp -------------------------------------------------------------------------------- /src/ui/ui_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/ui/ui_utils.cpp -------------------------------------------------------------------------------- /src/ui/ui_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/ui/ui_utils.h -------------------------------------------------------------------------------- /src/whereami/whereami.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/whereami/whereami.c -------------------------------------------------------------------------------- /src/whereami/whereami.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/src/whereami/whereami.h -------------------------------------------------------------------------------- /web/embedded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/web/embedded.html -------------------------------------------------------------------------------- /web/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/web/shell.html -------------------------------------------------------------------------------- /web/static/gamepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clydeshaffer/GameTankEmulator/HEAD/web/static/gamepad.png --------------------------------------------------------------------------------