├── .appveyor.yml ├── .clang-format ├── .github └── FUNDING.yml ├── .gitignore ├── CHANGES ├── CMakeLists.txt ├── CMakePresets.json ├── CONTRIBUTING.md ├── LICENSE ├── PORTING.md ├── README.md ├── README_DE.md ├── README_ES.md ├── README_JP.md ├── README_ZH_CN.md ├── cinema ├── .gitignore ├── gb │ ├── acid │ │ ├── cgb-acid2 │ │ │ ├── baseline_0000.png │ │ │ └── test.gbc │ │ ├── config.ini │ │ └── dmg-acid2 │ │ │ ├── baseline_0000.png │ │ │ └── test.gb │ ├── blargg │ │ ├── cgb_sound │ │ │ ├── 01-registers │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 02-len ctr │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ └── test.gb │ │ │ ├── 03-trigger │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ └── test.gb │ │ │ ├── 04-sweep │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 05-sweep details │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 06-overflow on trigger │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 07-len sweep period sync │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 08-len ctr during power │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 09-wave read while on │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 10-wave trigger while on │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 11-regs after power │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ └── 12-wave │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ ├── config.ini │ │ ├── cpu_instrs │ │ │ ├── 01-special │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 02-interrupts │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 03-op sp,hl │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ └── xbaseline_0000.png │ │ │ ├── 04-op r,imm │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 05-op rp │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 06-ld r,r │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 07-jr,jp,call,ret,rst │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 08-misc instrs │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 09-op r,r │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 10-bit ops │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ └── test.gb │ │ │ └── 11-op a,(hl) │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ └── test.gb │ │ ├── dmg_sound │ │ │ ├── 01-registers │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 02-len ctr │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ └── test.gb │ │ │ ├── 03-trigger │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ └── test.gb │ │ │ ├── 04-sweep │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 05-sweep details │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 06-overflow on trigger │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 07-len sweep period sync │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 08-len ctr during power │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 09-wave read while on │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ ├── 10-wave trigger while on │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ └── xbaseline_0000.png │ │ │ ├── 11-regs after power │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ │ └── 12-wave write while on │ │ │ │ ├── baseline_0000.png │ │ │ │ └── test.gb │ │ ├── halt_bug │ │ │ ├── baseline_0000.png │ │ │ └── test.gb │ │ ├── instr_timing │ │ │ ├── baseline_0000.png │ │ │ └── test.gb │ │ ├── interrupt_time │ │ │ ├── baseline_0000.png │ │ │ └── test.gb │ │ └── mem_timing │ │ │ ├── 01-read_timing │ │ │ ├── baseline_0000.png │ │ │ └── test.gb │ │ │ ├── 02-write_timing │ │ │ ├── baseline_0000.png │ │ │ └── test.gb │ │ │ └── 03-modify_timing │ │ │ ├── baseline_0000.png │ │ │ └── test.gb │ ├── mooneye-gb │ │ ├── LICENSE │ │ ├── acceptance │ │ │ ├── add_sp_e_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── bits │ │ │ │ ├── mem_oam │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── reg_f │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ └── unused_hwio-GS │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ ├── boot_div-S │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ │ ├── boot_div-dmg0 │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ │ ├── boot_div-dmgABCmgb │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ │ ├── boot_div2-S │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── boot_hwio-S │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── boot_hwio-dmg0 │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ │ ├── boot_hwio-dmgABCmgb │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── boot_regs-dmg0 │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ │ ├── boot_regs-dmgABC │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── boot_regs-mgb │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── boot_regs-sgb │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── boot_regs-sgb2 │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── call_cc_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── call_cc_timing2 │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── call_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── call_timing2 │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── di_timing-GS │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── div_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── ei_sequence │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── ei_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── halt_ime0_ei │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── halt_ime0_nointr_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── halt_ime1_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── halt_ime1_timing2-GS │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── if_ie_registers │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── instr │ │ │ │ └── daa │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ ├── interrupts │ │ │ │ └── ie_push │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ ├── intr_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── jp_cc_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── jp_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── ld_hl_sp_e_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── oam_dma │ │ │ │ ├── basic │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── reg_read │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ └── sources-GS │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ ├── oam_dma_restart │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── oam_dma_start │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ │ ├── oam_dma_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── pop_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── ppu │ │ │ │ ├── hblank_ly_scx_timing-GS │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── intr_1_2_timing-GS │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── intr_2_0_timing │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── intr_2_mode0_timing │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── intr_2_mode0_timing_sprites │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── intr_2_mode3_timing │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── intr_2_oam_ok_timing │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── lcdon_timing-GS │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── lcdon_write_timing-GS │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── stat_irq_blocking │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── stat_lyc_onoff │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ └── vblank_stat_intr-GS │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ ├── push_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ │ ├── rapid_di_ei │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── ret_cc_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── ret_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── reti_intr_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── reti_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── rst_timing │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── serial │ │ │ │ └── boot_sclk_align-dmgABCmgb │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ └── timer │ │ │ │ ├── div_write │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── rapid_toggle │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── tim00 │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── tim00_div_trigger │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── tim01 │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── tim01_div_trigger │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── tim10 │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── tim10_div_trigger │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── tim11 │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── tim11_div_trigger │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── tima_reload │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── tima_write_reloading │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ └── tma_write_reloading │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ ├── config.ini │ │ ├── emulator-only │ │ │ ├── mbc1 │ │ │ │ ├── bits_bank1 │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── bits_bank2 │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── bits_mode │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── bits_ramg │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── multicart_rom_8Mb │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── ram_256kb │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── ram_64kb │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── rom_16Mb │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── rom_1Mb │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── rom_2Mb │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── rom_4Mb │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── rom_512Kb │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ └── rom_8Mb │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ ├── mbc2 │ │ │ │ ├── bits_ramg │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── bits_romb │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── bits_unused │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── ram │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── rom_1Mb │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── rom_2Mb │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ └── rom_512kb │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ └── mbc5 │ │ │ │ ├── rom_16Mb │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── rom_1Mb │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── rom_2Mb │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── rom_32Mb │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── rom_4Mb │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── rom_512kb │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ ├── rom_64Mb │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ │ └── rom_8Mb │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ ├── madness │ │ │ └── mgb_oam_dma_halt_sprites │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ ├── manual-only │ │ │ └── sprite_priority │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ ├── misc │ │ │ ├── bits │ │ │ │ └── unused_hwio-C │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ ├── boot_div-A │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ │ ├── boot_div-cgb0 │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ │ ├── boot_div-cgbABCDE │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ │ ├── boot_hwio-C │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sav │ │ │ │ └── test.sym │ │ │ ├── boot_regs-A │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── boot_regs-cgb │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ └── ppu │ │ │ │ └── vblank_stat_intr-C │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ └── update.py │ ├── ramg-mbc3 │ │ ├── baseline_0000.png │ │ ├── config.ini │ │ └── test.gb │ ├── samesuite │ │ ├── apu │ │ │ ├── channel_1 │ │ │ │ ├── align │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── align_cpu │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── delay │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── duty │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── duty_delay │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── extra_length_clocking-cgb0B │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── freq_change │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── freq_change_timing-A │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── freq_change_timing-cgb0BC │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── freq_change_timing-cgbDE │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── nrx2_glitch │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── nrx2_speed_change │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── restart │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── restart_nrx2_glitch │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── stop_div │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── stop_restart │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── sweep │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── sweep_restart │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── sweep_restart_2 │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── volume │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ └── volume_div │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ ├── channel_2 │ │ │ │ ├── align │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── align_cpu │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── delay │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── duty │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── duty_delay │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── extra_length_clocking-cgb0B │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── freq_change │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── nrx2_glitch │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── nrx2_speed_change │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── restart │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── restart_nrx2_glitch │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── stop_div │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── stop_restart │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── volume │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ └── volume_div │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ ├── channel_3 │ │ │ │ ├── and_glitch │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── delay │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── extra_length_clocking-cgb0 │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── extra_length_clocking-cgbB │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── first_sample │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── freq_change_delay │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── restart_delay │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── restart_during_delay │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── restart_stop_delay │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── shift_delay │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── shift_skip_delay │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── stop_delay │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── stop_div │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── wave_ram_dac_on_rw │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ ├── wave_ram_locked_write │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ │ └── wave_ram_sync │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ ├── channel_4 │ │ │ │ ├── align │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── delay │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── equivalent_frequencies │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── extra_length_clocking-cgb0B │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── freq_change │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── frequency_alignment │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── lfsr │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── lfsr15 │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── lfsr_15_7 │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── lfsr_7_15 │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── lfsr_restart │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ ├── lfsr_restart_fast │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ ├── test.sym │ │ │ │ │ └── xbaseline_0000.png │ │ │ │ └── volume_div │ │ │ │ │ ├── baseline_0000.png │ │ │ │ │ ├── config.ini │ │ │ │ │ ├── test.gb │ │ │ │ │ └── test.sym │ │ │ ├── div_trigger_volume_10 │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── div_write_trigger │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ │ ├── div_write_trigger_10 │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ │ ├── div_write_trigger_volume │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ │ └── div_write_trigger_volume_10 │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ ├── config.ini │ │ ├── dma │ │ │ ├── gbc_dma_cont │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── gdma_addr_mask │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ │ ├── hdma_lcd_off │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ │ └── hdma_mode0 │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ ├── interrupt │ │ │ └── ei_delay_halt │ │ │ │ ├── config.ini │ │ │ │ ├── test.gb │ │ │ │ ├── test.sym │ │ │ │ └── xbaseline_0000.png │ │ ├── ppu │ │ │ └── blocking_bgpi_increase │ │ │ │ ├── baseline_0000.png │ │ │ │ ├── test.gb │ │ │ │ └── test.sym │ │ └── sgb │ │ │ ├── command_mlt_req │ │ │ ├── baseline_0000.png │ │ │ ├── test.gb │ │ │ └── test.sym │ │ │ ├── command_mlt_req_1 │ │ │ ├── baseline_0000.png │ │ │ ├── test.gb │ │ │ └── test.sym │ │ │ └── command_mlt_req_1_incrementing │ │ │ ├── baseline_0000.png │ │ │ ├── test.gb │ │ │ └── test.sym │ └── window │ │ ├── 007wne-hud │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ └── test.mvl │ │ ├── ccmmr-hud │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ └── test.mvl │ │ ├── dk94-split │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ ├── baseline_0006.png │ │ ├── baseline_0007.png │ │ ├── baseline_0008.png │ │ ├── test.mvl │ │ └── test.sav │ │ ├── gsc-battle │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── test.mvl │ │ └── test.sav │ │ ├── kdt-battle │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ ├── baseline_0006.png │ │ ├── baseline_0007.png │ │ ├── baseline_0008.png │ │ ├── baseline_0009.png │ │ └── test.mvl │ │ ├── rfs-hud │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ ├── baseline_0006.png │ │ ├── baseline_0007.png │ │ ├── baseline_0008.png │ │ ├── baseline_0009.png │ │ ├── baseline_0010.png │ │ ├── baseline_0011.png │ │ ├── baseline_0012.png │ │ ├── baseline_0013.png │ │ ├── baseline_0014.png │ │ └── test.mvl │ │ ├── smurfs-score │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ └── test.mvl │ │ ├── wmm-hud │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ ├── baseline_0006.png │ │ ├── baseline_0007.png │ │ └── test.mvl │ │ ├── zin-head │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ └── test.mvl │ │ └── zoos-intro │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ ├── baseline_0006.png │ │ ├── test.mvl │ │ └── test.sav └── gba │ ├── bg │ ├── ff6-midframe-update │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ ├── baseline_0006.png │ │ ├── baseline_0007.png │ │ ├── baseline_0008.png │ │ ├── baseline_0009.png │ │ ├── baseline_0010.png │ │ ├── baseline_0011.png │ │ ├── baseline_0012.png │ │ ├── baseline_0013.png │ │ ├── baseline_0014.png │ │ ├── baseline_0015.png │ │ └── test.mvl │ └── lady-sia │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ └── test.mvl │ ├── blend │ ├── backdrop-blend │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ └── test.mvl │ ├── bof-obj-backdrop-blend │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ ├── baseline_0006.png │ │ └── test.mvl │ ├── disabled-bg-semitrans-blend │ │ ├── baseline_0000.png │ │ ├── config.ini │ │ └── test.gba │ ├── gbg-blend │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ └── test.mvl │ ├── gs-obj-modes │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ └── test.mvl │ ├── kam-knockout │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ └── test.mvl │ ├── mzm-layering │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ ├── baseline_0006.png │ │ ├── baseline_0007.png │ │ ├── baseline_0008.png │ │ ├── baseline_0009.png │ │ ├── test.mvl │ │ └── test.sav │ ├── obj-semitrans-brighten │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ └── test.mvl │ ├── obj-semitrans-overwrite │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ └── test.mvl │ ├── sma-knockout │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ └── test.mvl │ └── sma2-semitrans │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ └── test.mvl │ ├── irq │ └── keyirq │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ ├── baseline_0006.png │ │ ├── baseline_0007.png │ │ ├── baseline_0008.png │ │ ├── baseline_0009.png │ │ ├── baseline_0010.png │ │ ├── baseline_0011.png │ │ ├── baseline_0012.png │ │ ├── baseline_0013.png │ │ ├── config.ini │ │ └── test.gba │ ├── obj │ ├── 2d-wrap │ │ ├── baseline_0000.png │ │ ├── config.ini │ │ └── test.gba │ ├── cycle-limit-ad │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ └── test.mvl │ ├── cycle-limit-nmj │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ └── test.mvl │ ├── fzc-obj-priority │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ ├── baseline_0006.png │ │ └── test.mvl │ ├── mosaic-height │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ ├── baseline_0006.png │ │ ├── baseline_0007.png │ │ ├── baseline_0008.png │ │ ├── baseline_0009.png │ │ ├── baseline_0010.png │ │ ├── baseline_0011.png │ │ ├── baseline_0012.png │ │ ├── baseline_0013.png │ │ ├── baseline_0014.png │ │ ├── baseline_0015.png │ │ ├── baseline_0016.png │ │ └── test.mvl │ ├── sma2-mosaic-clamp │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ ├── baseline_0006.png │ │ ├── baseline_0007.png │ │ └── test.mvl │ ├── unaligned-256-linear │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ ├── baseline_0004.png │ │ ├── baseline_0005.png │ │ └── test.mvl │ └── unaligned-256 │ │ ├── baseline_0000.png │ │ ├── baseline_0001.png │ │ ├── baseline_0002.png │ │ ├── baseline_0003.png │ │ └── test.mvl │ └── window │ ├── gs-clock-wipe │ ├── baseline_0000.png │ ├── baseline_0001.png │ ├── baseline_0002.png │ ├── baseline_0003.png │ ├── baseline_0004.png │ ├── baseline_0005.png │ ├── baseline_0006.png │ ├── baseline_0007.png │ ├── baseline_0008.png │ ├── baseline_0009.png │ ├── baseline_0010.png │ ├── baseline_0011.png │ ├── baseline_0012.png │ ├── baseline_0013.png │ ├── baseline_0014.png │ ├── baseline_0015.png │ ├── baseline_0016.png │ ├── baseline_0017.png │ └── test.mvl │ ├── sthg-objwin-blend │ ├── baseline_0000.png │ ├── baseline_0001.png │ ├── baseline_0002.png │ ├── baseline_0003.png │ └── test.mvl │ ├── tgr-objwin-order │ ├── baseline_0000.png │ ├── baseline_0001.png │ ├── baseline_0002.png │ ├── baseline_0003.png │ ├── baseline_0004.png │ ├── baseline_0005.png │ ├── baseline_0006.png │ ├── baseline_0007.png │ ├── baseline_0008.png │ ├── baseline_0009.png │ ├── baseline_0010.png │ ├── baseline_0011.png │ ├── baseline_0012.png │ ├── baseline_0013.png │ ├── baseline_0014.png │ ├── baseline_0015.png │ ├── baseline_0016.png │ ├── baseline_0017.png │ ├── baseline_0018.png │ ├── baseline_0019.png │ ├── baseline_0020.png │ ├── baseline_0021.png │ ├── baseline_0022.png │ ├── baseline_0023.png │ ├── baseline_0024.png │ └── test.mvl │ └── zmc-window-mosaic │ ├── baseline_0000.png │ ├── baseline_0001.png │ ├── baseline_0002.png │ ├── baseline_0003.png │ ├── baseline_0004.png │ ├── baseline_0005.png │ ├── baseline_0006.png │ ├── baseline_0007.png │ ├── baseline_0008.png │ ├── baseline_0009.png │ ├── baseline_0010.png │ ├── baseline_0011.png │ ├── baseline_0012.png │ ├── baseline_0013.png │ ├── baseline_0014.png │ ├── baseline_0015.png │ ├── baseline_0016.png │ ├── baseline_0017.png │ ├── baseline_0018.png │ ├── baseline_0019.png │ ├── baseline_0020.png │ ├── baseline_0021.png │ ├── baseline_0022.png │ ├── baseline_0023.png │ ├── baseline_0024.png │ ├── baseline_0025.png │ ├── baseline_0026.png │ ├── baseline_0027.png │ └── test.mvl ├── doc ├── mgba-qt.6 └── mgba.6 ├── include ├── mgba-util │ ├── audio-buffer.h │ ├── audio-resampler.h │ ├── circle-buffer.h │ ├── common.h │ ├── configuration.h │ ├── convolve.h │ ├── crc32.h │ ├── dllexports.h │ ├── elf-read.h │ ├── formatting.h │ ├── geometry.h │ ├── gui.h │ ├── gui │ │ ├── file-select.h │ │ ├── font-metrics.h │ │ ├── font.h │ │ └── menu.h │ ├── hash.h │ ├── image.h │ ├── image │ │ ├── export.h │ │ └── png-io.h │ ├── interpolator.h │ ├── macros.h │ ├── math.h │ ├── md5.h │ ├── memory.h │ ├── patch.h │ ├── patch │ │ ├── fast.h │ │ ├── ips.h │ │ └── ups.h │ ├── platform │ │ ├── 3ds │ │ │ ├── 3ds-vfs.h │ │ │ └── threading.h │ │ ├── posix │ │ │ └── threading.h │ │ ├── psp2 │ │ │ ├── sce-vfs.h │ │ │ └── threading.h │ │ ├── switch │ │ │ └── threading.h │ │ └── windows │ │ │ ├── getopt.h │ │ │ └── threading.h │ ├── ring-fifo.h │ ├── sfo.h │ ├── sha1.h │ ├── socket.h │ ├── string.h │ ├── table.h │ ├── text-codec.h │ ├── threading.h │ ├── vector.h │ └── vfs.h └── mgba │ ├── core │ ├── bitmap-cache.h │ ├── cache-set.h │ ├── cheats.h │ ├── config.h │ ├── core.h │ ├── cpu.h │ ├── directories.h │ ├── input.h │ ├── interface.h │ ├── library.h │ ├── lockstep.h │ ├── log.h │ ├── map-cache.h │ ├── mem-search.h │ ├── rewind.h │ ├── scripting.h │ ├── serialize.h │ ├── sync.h │ ├── thread.h │ ├── tile-cache.h │ ├── timing.h │ └── version.h │ ├── debugger │ └── debugger.h │ ├── feature │ ├── commandline.h │ ├── proxy-backend.h │ ├── thread-proxy.h │ ├── updater.h │ ├── video-backend.h │ └── video-logger.h │ ├── gb │ ├── core.h │ └── interface.h │ ├── gba │ ├── core.h │ └── interface.h │ ├── internal │ ├── arm │ │ ├── arm.h │ │ ├── debugger │ │ │ ├── cli-debugger.h │ │ │ ├── debugger.h │ │ │ └── memory-debugger.h │ │ ├── decoder-inlines.h │ │ ├── decoder.h │ │ ├── emitter-arm.h │ │ ├── emitter-inlines.h │ │ ├── emitter-thumb.h │ │ ├── isa-arm.h │ │ ├── isa-inlines.h │ │ ├── isa-thumb.h │ │ └── macros.h │ ├── debugger │ │ ├── access-logger.h │ │ ├── cli-debugger.h │ │ ├── cli-el-backend.h │ │ ├── gdb-stub.h │ │ ├── parser.h │ │ ├── stack-trace.h │ │ └── symbols.h │ ├── defines.h │ ├── gb │ │ ├── audio.h │ │ ├── cheats.h │ │ ├── debugger │ │ │ ├── cli.h │ │ │ ├── debugger.h │ │ │ └── symbols.h │ │ ├── gb.h │ │ ├── input.h │ │ ├── io.h │ │ ├── mbc.h │ │ ├── memory.h │ │ ├── overrides.h │ │ ├── renderers │ │ │ ├── cache-set.h │ │ │ ├── proxy.h │ │ │ └── software.h │ │ ├── serialize.h │ │ ├── sio.h │ │ ├── sio │ │ │ ├── lockstep.h │ │ │ └── printer.h │ │ ├── timer.h │ │ └── video.h │ ├── gba │ │ ├── audio.h │ │ ├── bios.h │ │ ├── cart │ │ │ ├── ereader.h │ │ │ ├── gpio.h │ │ │ ├── matrix.h │ │ │ └── unlicensed.h │ │ ├── cheats.h │ │ ├── debugger │ │ │ └── cli.h │ │ ├── dma.h │ │ ├── gba.h │ │ ├── input.h │ │ ├── io.h │ │ ├── memory.h │ │ ├── overrides.h │ │ ├── renderers │ │ │ ├── cache-set.h │ │ │ ├── common.h │ │ │ ├── gl.h │ │ │ ├── proxy.h │ │ │ └── video-software.h │ │ ├── savedata.h │ │ ├── serialize.h │ │ ├── sharkport.h │ │ ├── sio.h │ │ ├── sio │ │ │ ├── dolphin.h │ │ │ ├── gbp.h │ │ │ └── lockstep.h │ │ ├── timer.h │ │ └── video.h │ ├── script │ │ ├── lua.h │ │ ├── socket.h │ │ └── types.h │ └── sm83 │ │ ├── debugger │ │ ├── cli-debugger.h │ │ ├── debugger.h │ │ └── memory-debugger.h │ │ ├── decoder.h │ │ ├── emitter-sm83.h │ │ ├── isa-sm83.h │ │ └── sm83.h │ ├── script.h │ └── script │ ├── base.h │ ├── canvas.h │ ├── console.h │ ├── context.h │ ├── input.h │ ├── macros.h │ ├── storage.h │ └── types.h ├── opt └── libgba │ ├── mgba.c │ └── mgba.h ├── res ├── entitlements.plist ├── exe4 │ ├── chip-names.txt │ └── placeholder.png ├── exe5 │ ├── chip-names.txt │ └── placeholder.png ├── exe6 │ ├── chip-names.txt │ └── placeholder.png ├── font-mask.png ├── font-new.png ├── font-sdf.png ├── font.png ├── font2x.png ├── gb-icon-128.png ├── gb-icon-16.png ├── gb-icon-24.png ├── gb-icon-256.png ├── gb-icon-32.png ├── gb-icon.svg ├── gba-icon-128.png ├── gba-icon-16.png ├── gba-icon-24.png ├── gba-icon-256.png ├── gba-icon-32.png ├── gba-icon.svg ├── gbc-icon-128.png ├── gbc-icon-16.png ├── gbc-icon-24.png ├── gbc-icon-256.png ├── gbc-icon-32.png ├── gbc-icon.svg ├── icons.png ├── icons2x.png ├── info.plist.in ├── io.mgba.mGBA.metainfo.xml.in ├── keymap.qpic ├── keymap.svg ├── licenses │ ├── discord-rpc.txt │ ├── inih.txt │ ├── mingw-std-threads.txt │ └── rapidjson.txt ├── mgba-1024.png ├── mgba-128.png ├── mgba-16.png ├── mgba-24.png ├── mgba-256.png ├── mgba-32.png ├── mgba-48.png ├── mgba-512.png ├── mgba-64.png ├── mgba-96.png ├── mgba-qt.desktop ├── mgba.icns ├── mgba.ico ├── mgba.rc.in ├── no-cam.png ├── nointro.dat ├── patrons.txt ├── scripts │ ├── analog-interpolate.lua │ ├── demos │ │ ├── SourceSans3-Regular.otf │ │ ├── color-mask.lua │ │ ├── gamepad-demo.lua │ │ ├── light-oscillate.lua │ │ ├── logo-bg.png │ │ ├── logo-bounce.lua │ │ ├── logo-fg.png │ │ ├── logo.png │ │ ├── pokemon.lua │ │ ├── socketserver.lua │ │ ├── sockettest.lua │ │ ├── text-demo.lua │ │ ├── text-metrics.lua │ │ ├── tilt-random-walk.lua │ │ └── wheel.png │ └── input-display.lua ├── sgb-border.png ├── sgb-icon-128.png ├── sgb-icon-16.png ├── sgb-icon-24.png ├── sgb-icon-256.png ├── sgb-icon-32.png ├── sgb-icon-48.png ├── sgb-icon-64.png ├── sgb-icon.svg └── shaders │ ├── agb001.shader │ ├── agb001.fs │ └── manifest.ini │ ├── ags001.shader │ ├── ags001-light.fs │ ├── ags001.fs │ └── manifest.ini │ ├── dslite-color.shader │ ├── dslite-color.fs │ ├── dslite-color.vs │ └── manifest.ini │ ├── fish.shader │ ├── fish.fs │ └── manifest.ini │ ├── gb-micro-color.shader │ ├── gb-micro-color.fs │ ├── gb-micro-color.vs │ └── manifest.ini │ ├── gba-color.shader │ ├── gba-color.fs │ ├── gba-color.vs │ └── manifest.ini │ ├── gbc-color.shader │ ├── gbc-color.fs │ ├── gbc-color.vs │ └── manifest.ini │ ├── gbc-lcd.shader │ ├── gbc-lcd-light.fs │ ├── gbc-lcd.fs │ ├── license.txt │ └── manifest.ini │ ├── hq2x.shader │ ├── hq2x.fs │ └── manifest.ini │ ├── lcd.shader │ ├── lcd.fs │ └── manifest.ini │ ├── motion_blur.shader │ ├── manifest.ini │ └── motion_blur.fs │ ├── nds-color.shader │ ├── manifest.ini │ ├── nds-color.fs │ └── nds-color.vs │ ├── nso-gba-color.shader │ ├── manifest.ini │ ├── nso-gba-color.fs │ └── nso-gba-color.vs │ ├── nso-gbc-color.shader │ ├── manifest.ini │ ├── nso-gbc-color.fs │ └── nso-gbc-color.vs │ ├── omniscale.shader │ ├── manifest.ini │ └── omniscale.fs │ ├── pixelate.shader │ └── manifest.ini │ ├── scale2x.shader │ ├── manifest.ini │ └── scale2x.fs │ ├── scale4x.shader │ ├── manifest.ini │ └── scale4x.fs │ ├── scanlines.shader │ ├── manifest.ini │ └── scanlines.fs │ ├── soften.shader │ ├── manifest.ini │ └── soften.fs │ ├── sp101-color.shader │ ├── manifest.ini │ ├── sp101-color.fs │ └── sp101-color.vs │ ├── tv-mode.shader │ ├── manifest.ini │ └── tv.fs │ ├── vba_pixelate.shader │ ├── manifest.ini │ └── vba_pixelate.fs │ ├── vignette.shader │ ├── manifest.ini │ └── vignette.fs │ ├── wiiu.shader │ ├── manifest.ini │ └── wiiu.fs │ ├── xbr-lv2.shader │ ├── manifest.ini │ ├── xbr.fs │ └── xbr.vs │ └── xbr-lv3.shader │ ├── manifest.ini │ ├── xbr.fs │ └── xbr.vs ├── src ├── arm │ ├── CMakeLists.txt │ ├── arm.c │ ├── debugger │ │ ├── cli-debugger.c │ │ ├── debugger.c │ │ └── memory-debugger.c │ ├── decoder-arm.c │ ├── decoder-thumb.c │ ├── decoder.c │ ├── isa-arm.c │ └── isa-thumb.c ├── core │ ├── CMakeLists.txt │ ├── bitmap-cache.c │ ├── cache-set.c │ ├── cheats.c │ ├── config.c │ ├── core.c │ ├── directories.c │ ├── flags.h.in │ ├── input.c │ ├── interface.c │ ├── library.c │ ├── lockstep.c │ ├── log.c │ ├── map-cache.c │ ├── mem-search.c │ ├── rewind.c │ ├── scripting.c │ ├── serialize.c │ ├── sync.c │ ├── test │ │ ├── core.c │ │ └── scripting.c │ ├── thread.c │ ├── tile-cache.c │ ├── timing.c │ └── version.c.in ├── debugger │ ├── CMakeLists.txt │ ├── access-logger.c │ ├── cli-debugger-scripting.c │ ├── cli-debugger.c │ ├── cli-el-backend.c │ ├── debugger.c │ ├── gdb-stub.c │ ├── parser.c │ ├── stack-trace.c │ ├── symbols.c │ └── test │ │ ├── lexer.c │ │ └── parser.c ├── feature │ ├── CMakeLists.txt │ ├── commandline.c │ ├── ffmpeg │ │ ├── ffmpeg-common.h │ │ ├── ffmpeg-decoder.c │ │ ├── ffmpeg-decoder.h │ │ ├── ffmpeg-encoder.c │ │ ├── ffmpeg-encoder.h │ │ ├── ffmpeg-scale.c │ │ └── ffmpeg-scale.h │ ├── gui │ │ ├── cheats.c │ │ ├── cheats.h │ │ ├── gui-config.c │ │ ├── gui-config.h │ │ ├── gui-runner.c │ │ ├── gui-runner.h │ │ ├── remap.c │ │ └── remap.h │ ├── proxy-backend.c │ ├── sqlite3 │ │ ├── no-intro.c │ │ └── no-intro.h │ ├── thread-proxy.c │ ├── updater.c │ ├── video-backend.c │ └── video-logger.c ├── gb │ ├── CMakeLists.txt │ ├── audio.c │ ├── cheats.c │ ├── core.c │ ├── debugger │ │ ├── cli.c │ │ ├── debugger.c │ │ └── symbols.c │ ├── extra │ │ └── proxy.c │ ├── gb.c │ ├── input.c │ ├── io.c │ ├── mbc.c │ ├── mbc │ │ ├── huc-3.c │ │ ├── licensed.c │ │ ├── mbc-private.h │ │ ├── mbc.c │ │ ├── pocket-cam.c │ │ ├── tama5.c │ │ └── unlicensed.c │ ├── memory.c │ ├── overrides.c │ ├── renderers │ │ ├── cache-set.c │ │ └── software.c │ ├── serialize.c │ ├── sio.c │ ├── sio │ │ ├── lockstep.c │ │ └── printer.c │ ├── test │ │ ├── core.c │ │ ├── gbx.c │ │ ├── mbc.c │ │ ├── memory.c │ │ └── rtc.c │ ├── timer.c │ └── video.c ├── gba │ ├── CMakeLists.txt │ ├── audio.c │ ├── bios.c │ ├── cart │ │ ├── ereader.c │ │ ├── gpio.c │ │ ├── matrix.c │ │ ├── unlicensed.c │ │ └── vfame.c │ ├── cheats.c │ ├── cheats │ │ ├── codebreaker.c │ │ ├── gameshark.c │ │ ├── gameshark.h │ │ ├── parv3.c │ │ └── parv3.h │ ├── core.c │ ├── debugger │ │ └── cli.c │ ├── dma.c │ ├── extra │ │ ├── battlechip.c │ │ └── proxy.c │ ├── gba.c │ ├── hle-bios.c │ ├── hle-bios.h │ ├── hle-bios.make │ ├── hle-bios.s │ ├── input.c │ ├── io.c │ ├── memory.c │ ├── overrides.c │ ├── renderers │ │ ├── cache-set.c │ │ ├── common.c │ │ ├── gl.c │ │ ├── software-bg.c │ │ ├── software-mode0.c │ │ ├── software-obj.c │ │ ├── software-private.h │ │ └── video-software.c │ ├── savedata.c │ ├── serialize.c │ ├── sharkport.c │ ├── sio.c │ ├── sio │ │ ├── dolphin.c │ │ ├── gbp.c │ │ └── lockstep.c │ ├── test │ │ ├── cheats.c │ │ └── core.c │ ├── timer.c │ └── video.c ├── platform │ ├── 3ds │ │ ├── 3ds-vfs.c │ │ ├── CMakeLists.txt │ │ ├── CMakeToolchain.txt │ │ ├── banner.cgfx │ │ ├── bios.wav │ │ ├── cia.rsf.in │ │ ├── ctr-gpu.c │ │ ├── ctr-gpu.h │ │ ├── ctru-heap.c │ │ ├── gui-font.c │ │ ├── hbl.xml │ │ ├── icons.t3x │ │ ├── main.c │ │ ├── socket.c │ │ ├── uishader.g.pica │ │ └── uishader.v.pica │ ├── cmake │ │ ├── DMGOverrides.cmake.in │ │ ├── DebugStrip.cmake │ │ ├── ExportDirectory.cmake │ │ ├── FindFeature.cmake │ │ ├── FindFunction.cmake │ │ ├── FindSDL2.cmake │ │ ├── Findepoxy.cmake │ │ └── devkitPro.cmake │ ├── example │ │ └── client-server │ │ │ ├── client.c │ │ │ └── server.c │ ├── headless-main.c │ ├── libretro │ │ ├── libretro.c │ │ ├── libretro.h │ │ ├── libretro_core_options.h │ │ ├── libretro_core_options_intl.h │ │ └── retro_inline.h │ ├── opengl │ │ ├── gl.c │ │ ├── gl.h │ │ ├── gles2.c │ │ └── gles2.h │ ├── posix │ │ └── memory.c │ ├── psp2 │ │ ├── CMakeLists.txt │ │ ├── CMakeToolchain.vitasdk │ │ ├── backdrop.png │ │ ├── bg.png │ │ ├── gui-font.c │ │ ├── icon0.png │ │ ├── main.c │ │ ├── perf-start.sh │ │ ├── perf.c │ │ ├── pic0.png │ │ ├── psp2-common.h │ │ ├── psp2-context.c │ │ ├── psp2-context.h │ │ ├── psp2-memory.c │ │ ├── sce-vfs.c │ │ ├── startup.png │ │ └── template.xml.in │ ├── python │ │ ├── .gitignore │ │ ├── .pylintrc │ │ ├── CMakeLists.txt │ │ ├── _builder.h │ │ ├── _builder.py │ │ ├── cinema │ │ │ ├── __init__.py │ │ │ ├── movie.py │ │ │ ├── test.py │ │ │ └── util.py │ │ ├── conftest.py │ │ ├── core.c │ │ ├── core.h │ │ ├── engine.c │ │ ├── engine.h │ │ ├── lib.h │ │ ├── log.c │ │ ├── log.h │ │ ├── mgba │ │ │ ├── __init__.py │ │ │ ├── arm.py │ │ │ ├── core.py │ │ │ ├── debugger.py │ │ │ ├── gamedata.py │ │ │ ├── gb.py │ │ │ ├── gba.py │ │ │ ├── image.py │ │ │ ├── log.py │ │ │ ├── memory.py │ │ │ ├── png.py │ │ │ ├── sm83.py │ │ │ ├── thread.py │ │ │ ├── tile.py │ │ │ └── vfs.py │ │ ├── pycommon.h │ │ ├── setup.cfg │ │ ├── setup.py │ │ ├── test_cinema.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── mgba │ │ │ │ ├── __init__.py │ │ │ │ ├── test_core.py │ │ │ │ └── test_vfs.py │ │ ├── vfs-py.c │ │ └── vfs-py.h │ ├── qt │ │ ├── AboutScreen.cpp │ │ ├── AboutScreen.h │ │ ├── AboutScreen.ui │ │ ├── AbstractUpdater.cpp │ │ ├── AbstractUpdater.h │ │ ├── Action.cpp │ │ ├── Action.h │ │ ├── ActionMapper.cpp │ │ ├── ActionMapper.h │ │ ├── ApplicationUpdatePrompt.cpp │ │ ├── ApplicationUpdatePrompt.h │ │ ├── ApplicationUpdatePrompt.ui │ │ ├── ApplicationUpdater.cpp │ │ ├── ApplicationUpdater.h │ │ ├── ArchiveInspector.cpp │ │ ├── ArchiveInspector.h │ │ ├── ArchiveInspector.ui │ │ ├── AssetInfo.cpp │ │ ├── AssetInfo.h │ │ ├── AssetTile.cpp │ │ ├── AssetTile.h │ │ ├── AssetTile.ui │ │ ├── AssetView.cpp │ │ ├── AssetView.h │ │ ├── AudioDevice.cpp │ │ ├── AudioDevice.h │ │ ├── AudioProcessor.cpp │ │ ├── AudioProcessor.h │ │ ├── AudioProcessorQt.cpp │ │ ├── AudioProcessorQt.h │ │ ├── AudioProcessorSDL.cpp │ │ ├── AudioProcessorSDL.h │ │ ├── BattleChipModel.cpp │ │ ├── BattleChipModel.h │ │ ├── BattleChipUpdater.cpp │ │ ├── BattleChipUpdater.h │ │ ├── BattleChipView.cpp │ │ ├── BattleChipView.h │ │ ├── BattleChipView.ui │ │ ├── CMakeLists.txt │ │ ├── CheatsModel.cpp │ │ ├── CheatsModel.h │ │ ├── CheatsView.cpp │ │ ├── CheatsView.h │ │ ├── CheatsView.ui │ │ ├── CheckBoxDelegate.cpp │ │ ├── CheckBoxDelegate.h │ │ ├── ColorPicker.cpp │ │ ├── ColorPicker.h │ │ ├── ConfigController.cpp │ │ ├── ConfigController.h │ │ ├── CoreController.cpp │ │ ├── CoreController.h │ │ ├── CoreManager.cpp │ │ ├── CoreManager.h │ │ ├── DebuggerConsole.cpp │ │ ├── DebuggerConsole.h │ │ ├── DebuggerConsole.ui │ │ ├── DebuggerConsoleController.cpp │ │ ├── DebuggerConsoleController.h │ │ ├── DebuggerController.cpp │ │ ├── DebuggerController.h │ │ ├── DiscordCoordinator.cpp │ │ ├── DiscordCoordinator.h │ │ ├── Display.cpp │ │ ├── Display.h │ │ ├── DisplayGL.cpp │ │ ├── DisplayGL.h │ │ ├── DisplayQt.cpp │ │ ├── DisplayQt.h │ │ ├── DolphinConnector.cpp │ │ ├── DolphinConnector.h │ │ ├── DolphinConnector.ui │ │ ├── ForwarderController.cpp │ │ ├── ForwarderController.h │ │ ├── ForwarderGenerator.cpp │ │ ├── ForwarderGenerator.h │ │ ├── ForwarderGenerator3DS.cpp │ │ ├── ForwarderGenerator3DS.h │ │ ├── ForwarderGeneratorVita.cpp │ │ ├── ForwarderGeneratorVita.h │ │ ├── ForwarderView.cpp │ │ ├── ForwarderView.h │ │ ├── ForwarderView.ui │ │ ├── FrameView.cpp │ │ ├── FrameView.h │ │ ├── FrameView.ui │ │ ├── GBAApp.cpp │ │ ├── GBAApp.h │ │ ├── GBAKeyEditor.cpp │ │ ├── GBAKeyEditor.h │ │ ├── GBAOverride.cpp │ │ ├── GBAOverride.h │ │ ├── GBOverride.cpp │ │ ├── GBOverride.h │ │ ├── GDBController.cpp │ │ ├── GDBController.h │ │ ├── GDBWindow.cpp │ │ ├── GDBWindow.h │ │ ├── GIFView.cpp │ │ ├── GIFView.h │ │ ├── GIFView.ui │ │ ├── GameBoy.cpp │ │ ├── GameBoy.h │ │ ├── IOViewer.cpp │ │ ├── IOViewer.h │ │ ├── IOViewer.ui │ │ ├── InputController.cpp │ │ ├── InputController.h │ │ ├── InputProfile.cpp │ │ ├── InputProfile.h │ │ ├── KeyEditor.cpp │ │ ├── KeyEditor.h │ │ ├── LoadSaveState.cpp │ │ ├── LoadSaveState.h │ │ ├── LoadSaveState.ui │ │ ├── Log.cpp │ │ ├── Log.h │ │ ├── LogConfigModel.cpp │ │ ├── LogConfigModel.h │ │ ├── LogController.cpp │ │ ├── LogController.h │ │ ├── LogView.cpp │ │ ├── LogView.h │ │ ├── LogView.ui │ │ ├── LogWidget.cpp │ │ ├── LogWidget.h │ │ ├── MapView.cpp │ │ ├── MapView.h │ │ ├── MapView.ui │ │ ├── MemoryAccessLogController.cpp │ │ ├── MemoryAccessLogController.h │ │ ├── MemoryAccessLogModel.cpp │ │ ├── MemoryAccessLogModel.h │ │ ├── MemoryAccessLogView.cpp │ │ ├── MemoryAccessLogView.h │ │ ├── MemoryAccessLogView.ui │ │ ├── MemoryDump.cpp │ │ ├── MemoryDump.h │ │ ├── MemoryDump.ui │ │ ├── MemoryModel.cpp │ │ ├── MemoryModel.h │ │ ├── MemorySearch.cpp │ │ ├── MemorySearch.h │ │ ├── MemorySearch.ui │ │ ├── MemoryView.cpp │ │ ├── MemoryView.h │ │ ├── MemoryView.ui │ │ ├── MessagePainter.cpp │ │ ├── MessagePainter.h │ │ ├── MultiplayerController.cpp │ │ ├── MultiplayerController.h │ │ ├── ObjView.cpp │ │ ├── ObjView.h │ │ ├── ObjView.ui │ │ ├── OpenGLBug.cpp │ │ ├── OpenGLBug.h │ │ ├── Override.h │ │ ├── OverrideView.cpp │ │ ├── OverrideView.h │ │ ├── OverrideView.ui │ │ ├── PaletteView.cpp │ │ ├── PaletteView.h │ │ ├── PaletteView.ui │ │ ├── PlacementControl.cpp │ │ ├── PlacementControl.h │ │ ├── PlacementControl.ui │ │ ├── PrinterView.cpp │ │ ├── PrinterView.h │ │ ├── PrinterView.ui │ │ ├── ROMInfo.cpp │ │ ├── ROMInfo.h │ │ ├── ROMInfo.ui │ │ ├── RegisterView.cpp │ │ ├── RegisterView.h │ │ ├── ReportView.cpp │ │ ├── ReportView.h │ │ ├── ReportView.ui │ │ ├── RotatedHeaderView.cpp │ │ ├── RotatedHeaderView.h │ │ ├── SaveConverter.cpp │ │ ├── SaveConverter.h │ │ ├── SaveConverter.ui │ │ ├── SavestateButton.cpp │ │ ├── SavestateButton.h │ │ ├── SensorView.cpp │ │ ├── SensorView.h │ │ ├── SensorView.ui │ │ ├── SettingsView.cpp │ │ ├── SettingsView.h │ │ ├── SettingsView.ui │ │ ├── ShaderSelector.cpp │ │ ├── ShaderSelector.h │ │ ├── ShaderSelector.ui │ │ ├── ShortcutController.cpp │ │ ├── ShortcutController.h │ │ ├── ShortcutModel.cpp │ │ ├── ShortcutModel.h │ │ ├── ShortcutView.cpp │ │ ├── ShortcutView.h │ │ ├── ShortcutView.ui │ │ ├── Swatch.cpp │ │ ├── Swatch.h │ │ ├── TilePainter.cpp │ │ ├── TilePainter.h │ │ ├── TileView.cpp │ │ ├── TileView.h │ │ ├── TileView.ui │ │ ├── VFileDevice.cpp │ │ ├── VFileDevice.h │ │ ├── VideoDumper.cpp │ │ ├── VideoDumper.h │ │ ├── VideoProxy.cpp │ │ ├── VideoProxy.h │ │ ├── VideoView.cpp │ │ ├── VideoView.h │ │ ├── VideoView.ui │ │ ├── Window.cpp │ │ ├── Window.h │ │ ├── input │ │ │ ├── Gamepad.cpp │ │ │ ├── Gamepad.h │ │ │ ├── GamepadAxisEvent.cpp │ │ │ ├── GamepadAxisEvent.h │ │ │ ├── GamepadButtonEvent.cpp │ │ │ ├── GamepadButtonEvent.h │ │ │ ├── GamepadHatEvent.cpp │ │ │ ├── GamepadHatEvent.h │ │ │ ├── InputDriver.cpp │ │ │ ├── InputDriver.h │ │ │ ├── InputMapper.cpp │ │ │ ├── InputMapper.h │ │ │ ├── InputSource.cpp │ │ │ ├── InputSource.h │ │ │ ├── KeySource.cpp │ │ │ ├── KeySource.h │ │ │ ├── SDLInputDriver.cpp │ │ │ └── SDLInputDriver.h │ │ ├── library │ │ │ ├── LibraryController.cpp │ │ │ ├── LibraryController.h │ │ │ ├── LibraryEntry.cpp │ │ │ ├── LibraryEntry.h │ │ │ ├── LibraryGrid.cpp │ │ │ ├── LibraryGrid.h │ │ │ ├── LibraryModel.cpp │ │ │ └── LibraryModel.h │ │ ├── main.cpp │ │ ├── resources.qrc │ │ ├── scripting │ │ │ ├── AutorunScriptModel.cpp │ │ │ ├── AutorunScriptModel.h │ │ │ ├── AutorunScriptView.cpp │ │ │ ├── AutorunScriptView.h │ │ │ ├── AutorunScriptView.ui │ │ │ ├── ScriptingController.cpp │ │ │ ├── ScriptingController.h │ │ │ ├── ScriptingTextBuffer.cpp │ │ │ ├── ScriptingTextBuffer.h │ │ │ ├── ScriptingTextBufferModel.cpp │ │ │ ├── ScriptingTextBufferModel.h │ │ │ ├── ScriptingView.cpp │ │ │ ├── ScriptingView.h │ │ │ └── ScriptingView.ui │ │ ├── test │ │ │ ├── autoscript.cpp │ │ │ ├── library.cpp │ │ │ └── spanset.cpp │ │ ├── ts │ │ │ ├── mgba-de.ts │ │ │ ├── mgba-en.ts │ │ │ ├── mgba-es.ts │ │ │ ├── mgba-fr.ts │ │ │ ├── mgba-hu.ts │ │ │ ├── mgba-it.ts │ │ │ ├── mgba-ja.ts │ │ │ ├── mgba-ko.ts │ │ │ ├── mgba-ms.ts │ │ │ ├── mgba-nb_NO.ts │ │ │ ├── mgba-pl.ts │ │ │ ├── mgba-pt_BR.ts │ │ │ ├── mgba-pt_PT.ts │ │ │ ├── mgba-ru.ts │ │ │ ├── mgba-sv.ts │ │ │ ├── mgba-ta.ts │ │ │ ├── mgba-template.ts │ │ │ ├── mgba-tr.ts │ │ │ ├── mgba-zh_CN.ts │ │ │ └── mgba-zh_Hant.ts │ │ ├── updater-config.qrc.in │ │ ├── updater.qrc.in │ │ ├── utils.cpp │ │ └── utils.h │ ├── sdl │ │ ├── CMakeLists.txt │ │ ├── gl-common.c │ │ ├── gl-common.h │ │ ├── gl-sdl.c │ │ ├── gles2-sdl.c │ │ ├── main.c │ │ ├── main.h │ │ ├── sdl-audio.c │ │ ├── sdl-audio.h │ │ ├── sdl-events.c │ │ ├── sdl-events.h │ │ ├── sw-sdl1.c │ │ └── sw-sdl2.c │ ├── switch │ │ ├── CMakeLists.txt │ │ ├── CMakeToolchain.txt │ │ ├── fileassoc.cfg.in │ │ ├── gui-font.c │ │ ├── icon.jpg │ │ └── main.c │ ├── test │ │ ├── CMakeLists.txt │ │ ├── cinema-main.c │ │ ├── fuzz-main.c │ │ ├── perf-main.c │ │ └── tbl-fuzz-main.c │ ├── wii │ │ ├── CMakeLists.txt │ │ ├── CMakeToolchain.txt │ │ ├── gui-font.c │ │ ├── icon.png │ │ ├── main.c │ │ └── meta.xml.in │ └── windows │ │ ├── memory.c │ │ ├── setup │ │ ├── setup.ico │ │ ├── setup.iss.in │ │ └── wizard-image.bmp │ │ └── vfs-w32.c ├── script │ ├── CMakeLists.txt │ ├── canvas.c │ ├── console.c │ ├── context.c │ ├── engines │ │ └── lua.c │ ├── image.c │ ├── input.c │ ├── socket.c │ ├── stdlib.c │ ├── storage.c │ ├── test.h │ ├── test │ │ ├── classes.c │ │ ├── context.c │ │ ├── image.c │ │ ├── input.c │ │ ├── lua.c │ │ ├── stdlib.c │ │ ├── storage.c │ │ └── types.c │ └── types.c ├── sm83 │ ├── CMakeLists.txt │ ├── debugger │ │ ├── cli-debugger.c │ │ ├── debugger.c │ │ └── memory-debugger.c │ ├── decoder.c │ ├── isa-sm83.c │ └── sm83.c ├── third-party │ ├── discord-rpc │ │ ├── .clang-format │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── include │ │ │ ├── discord_register.h │ │ │ ├── discord_rpc.h │ │ │ ├── mingw-std-threads │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── condition_variable │ │ │ │ ├── mutex │ │ │ │ ├── shared_mutex │ │ │ │ └── thread │ │ │ └── rapidjson │ │ │ │ ├── allocators.h │ │ │ │ ├── document.h │ │ │ │ ├── encodedstream.h │ │ │ │ ├── encodings.h │ │ │ │ ├── error │ │ │ │ ├── en.h │ │ │ │ └── error.h │ │ │ │ ├── filereadstream.h │ │ │ │ ├── filewritestream.h │ │ │ │ ├── fwd.h │ │ │ │ ├── internal │ │ │ │ ├── biginteger.h │ │ │ │ ├── diyfp.h │ │ │ │ ├── dtoa.h │ │ │ │ ├── ieee754.h │ │ │ │ ├── itoa.h │ │ │ │ ├── meta.h │ │ │ │ ├── pow10.h │ │ │ │ ├── regex.h │ │ │ │ ├── stack.h │ │ │ │ ├── strfunc.h │ │ │ │ ├── strtod.h │ │ │ │ └── swap.h │ │ │ │ ├── istreamwrapper.h │ │ │ │ ├── license.txt │ │ │ │ ├── memorybuffer.h │ │ │ │ ├── memorystream.h │ │ │ │ ├── msinttypes │ │ │ │ ├── inttypes.h │ │ │ │ └── stdint.h │ │ │ │ ├── ostreamwrapper.h │ │ │ │ ├── pointer.h │ │ │ │ ├── prettywriter.h │ │ │ │ ├── rapidjson.h │ │ │ │ ├── reader.h │ │ │ │ ├── schema.h │ │ │ │ ├── stream.h │ │ │ │ ├── stringbuffer.h │ │ │ │ └── writer.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── backoff.h │ │ │ ├── connection.h │ │ │ ├── connection_unix.cpp │ │ │ ├── connection_win.cpp │ │ │ ├── discord_register_linux.cpp │ │ │ ├── discord_register_osx.m │ │ │ ├── discord_register_win.cpp │ │ │ ├── discord_rpc.cpp │ │ │ ├── dllmain.cpp │ │ │ ├── msg_queue.h │ │ │ ├── rpc_connection.cpp │ │ │ ├── rpc_connection.h │ │ │ ├── serialization.cpp │ │ │ └── serialization.h │ ├── inih │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── ini.c │ │ └── ini.h │ ├── libpng │ │ ├── .appveyor.yml │ │ ├── .cmake-format.yaml │ │ ├── .editorconfig │ │ ├── .editorconfig-checker.json │ │ ├── .github │ │ │ └── workflows │ │ │ │ ├── lint.yml │ │ │ │ ├── verify-linux.yml │ │ │ │ ├── verify-macos.yml │ │ │ │ └── verify-windows.yml │ │ ├── .gitignore │ │ ├── .yamllint.yml │ │ ├── ANNOUNCE │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── TODO │ │ ├── TRADEMARK │ │ ├── aclocal.m4 │ │ ├── arm │ │ │ ├── arm_init.c │ │ │ ├── filter_neon.S │ │ │ ├── filter_neon_intrinsics.c │ │ │ └── palette_neon_intrinsics.c │ │ ├── autogen.sh │ │ ├── ci │ │ │ ├── .shellcheckrc │ │ │ ├── LICENSE_MIT.txt │ │ │ ├── README.md │ │ │ ├── ci_lint.sh │ │ │ ├── ci_verify_cmake.sh │ │ │ ├── ci_verify_configure.sh │ │ │ ├── ci_verify_makefiles.sh │ │ │ ├── ci_verify_version.sh │ │ │ ├── lib │ │ │ │ └── ci.lib.sh │ │ │ ├── libexec │ │ │ │ ├── ci_shellify_autoconf.sh │ │ │ │ ├── ci_shellify_c.sh │ │ │ │ ├── ci_shellify_cmake.sh │ │ │ │ └── ci_shellify_shell.sh │ │ │ └── targets │ │ │ │ ├── android │ │ │ │ ├── ci_env.aarch64-linux-android.sh │ │ │ │ ├── ci_env.armv7a-linux-androideabi.sh │ │ │ │ ├── ci_env.i686-linux-android.sh │ │ │ │ └── ci_env.x86_64-linux-android.sh │ │ │ │ ├── cygwin │ │ │ │ ├── ci_env.i686-pc-cygwin.sh │ │ │ │ └── ci_env.x86_64-pc-cygwin.sh │ │ │ │ ├── darwin │ │ │ │ ├── ci_env.arm64-apple-darwin.sh │ │ │ │ └── ci_env.x86_64-apple-darwin.sh │ │ │ │ ├── freebsd │ │ │ │ ├── ci_env.aarch64-unknown-freebsd.sh │ │ │ │ ├── ci_env.i686-unknown-freebsd.sh │ │ │ │ ├── ci_env.riscv64-unknown-freebsd.sh │ │ │ │ └── ci_env.x86_64-unknown-freebsd.sh │ │ │ │ ├── linux │ │ │ │ ├── ci_env.aarch64-linux-gnu.sh │ │ │ │ ├── ci_env.arm-linux-gnueabi.sh │ │ │ │ ├── ci_env.arm-linux-gnueabihf.sh │ │ │ │ ├── ci_env.i686-linux-gnu.sh │ │ │ │ ├── ci_env.mips-linux-gnu.sh │ │ │ │ ├── ci_env.mips64-linux-gnuabi64.sh │ │ │ │ ├── ci_env.mips64el-linux-gnuabi64.sh │ │ │ │ ├── ci_env.mipsel-linux-gnu.sh │ │ │ │ ├── ci_env.mipsisa32r6-linux-gnu.sh │ │ │ │ ├── ci_env.mipsisa32r6el-linux-gnu.sh │ │ │ │ ├── ci_env.mipsisa64r6-linux-gnuabi64.sh │ │ │ │ ├── ci_env.mipsisa64r6el-linux-gnuabi64.sh │ │ │ │ ├── ci_env.powerpc-linux-gnu.sh │ │ │ │ ├── ci_env.powerpc64-linux-gnu.sh │ │ │ │ ├── ci_env.powerpc64le-linux-gnu.sh │ │ │ │ ├── ci_env.riscv64-linux-gnu.sh │ │ │ │ └── ci_env.x86_64-linux-gnu.sh │ │ │ │ ├── msdos │ │ │ │ ├── ci_env.i386-pc-msdoswatcom.sh │ │ │ │ ├── ci_env.i586-pc-msdosdjgpp.sh │ │ │ │ └── ci_env.i86-pc-msdoswatcom.sh │ │ │ │ └── windows │ │ │ │ ├── ci_env.aarch64-windows-llvm.sh │ │ │ │ ├── ci_env.i686-w64-mingw32.sh │ │ │ │ ├── ci_env.i686-windows-llvm.sh │ │ │ │ ├── ci_env.x86_64-w64-mingw32.sh │ │ │ │ └── ci_env.x86_64-windows-llvm.sh │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── contrib │ │ │ ├── .editorconfig │ │ │ ├── README.txt │ │ │ ├── arm-neon │ │ │ │ ├── README │ │ │ │ ├── android-ndk.c │ │ │ │ ├── linux-auxv.c │ │ │ │ └── linux.c │ │ │ ├── conftest │ │ │ │ ├── README │ │ │ │ ├── basic.dfa │ │ │ │ ├── fixed.dfa │ │ │ │ ├── float-fixed.dfa │ │ │ │ ├── nocompile-limits.dfa │ │ │ │ ├── nolimits.dfa │ │ │ │ ├── pngcp.dfa │ │ │ │ ├── read-full.dfa │ │ │ │ ├── read.dfa │ │ │ │ ├── s_read.dfa │ │ │ │ ├── s_write.dfa │ │ │ │ ├── simple.dfa │ │ │ │ ├── write-full.dfa │ │ │ │ └── write.dfa │ │ │ ├── examples │ │ │ │ ├── .clang-format │ │ │ │ ├── README.txt │ │ │ │ ├── iccfrompng.c │ │ │ │ ├── pngpixel.c │ │ │ │ ├── pngtopng.c │ │ │ │ └── simpleover.c │ │ │ ├── gregbook │ │ │ │ ├── COPYING │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile.mingw32 │ │ │ │ ├── Makefile.sgi │ │ │ │ ├── Makefile.unx │ │ │ │ ├── Makefile.w32 │ │ │ │ ├── README │ │ │ │ ├── makevms.com │ │ │ │ ├── readpng.c │ │ │ │ ├── readpng.h │ │ │ │ ├── readpng2.c │ │ │ │ ├── readpng2.h │ │ │ │ ├── readppm.c │ │ │ │ ├── rpng-win.c │ │ │ │ ├── rpng-x.c │ │ │ │ ├── rpng2-win.c │ │ │ │ ├── rpng2-x.c │ │ │ │ ├── toucan.png │ │ │ │ ├── wpng.c │ │ │ │ ├── writepng.c │ │ │ │ └── writepng.h │ │ │ ├── libtests │ │ │ │ ├── fakepng.c │ │ │ │ ├── gentests.sh │ │ │ │ ├── makepng.c │ │ │ │ ├── pngimage.c │ │ │ │ ├── pngstest-errors.h │ │ │ │ ├── pngstest.c │ │ │ │ ├── pngunknown.c │ │ │ │ ├── pngvalid.c │ │ │ │ ├── readpng.c │ │ │ │ ├── tarith.c │ │ │ │ └── timepng.c │ │ │ ├── mips-mmi │ │ │ │ └── linux.c │ │ │ ├── mips-msa │ │ │ │ ├── README │ │ │ │ └── linux.c │ │ │ ├── oss-fuzz │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.txt │ │ │ │ ├── build.sh │ │ │ │ ├── libpng_read_fuzzer.cc │ │ │ │ ├── libpng_read_fuzzer.options │ │ │ │ └── png.dict │ │ │ ├── pngexif │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── .pylintrc │ │ │ │ ├── LICENSE_MIT.txt │ │ │ │ ├── README.md │ │ │ │ ├── bytepack.py │ │ │ │ ├── exifinfo.py │ │ │ │ ├── pngexifinfo │ │ │ │ ├── pngexifinfo.bat │ │ │ │ └── pngexifinfo.py │ │ │ ├── pngminim │ │ │ │ ├── README │ │ │ │ ├── decoder │ │ │ │ │ ├── README │ │ │ │ │ ├── makefile │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ └── pngusr.h │ │ │ │ ├── encoder │ │ │ │ │ ├── README │ │ │ │ │ ├── makefile │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ └── pngusr.h │ │ │ │ └── preader │ │ │ │ │ ├── README │ │ │ │ │ ├── makefile │ │ │ │ │ ├── pngusr.dfa │ │ │ │ │ └── pngusr.h │ │ │ ├── pngminus │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGES.txt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.txt │ │ │ │ ├── makevms.com │ │ │ │ ├── png2pnm.c │ │ │ │ ├── pnm2png.c │ │ │ │ ├── test_png2pnm.bat │ │ │ │ ├── test_png2pnm.sh │ │ │ │ ├── test_pngminus.bat │ │ │ │ ├── test_pngminus.sh │ │ │ │ ├── test_pnm2png.bat │ │ │ │ └── test_pnm2png.sh │ │ │ ├── pngsuite │ │ │ │ ├── README │ │ │ │ ├── bad_interlace_conversions.txt │ │ │ │ ├── basn0g01.png │ │ │ │ ├── basn0g02.png │ │ │ │ ├── basn0g04.png │ │ │ │ ├── basn0g08.png │ │ │ │ ├── basn0g16.png │ │ │ │ ├── basn2c08.png │ │ │ │ ├── basn2c16.png │ │ │ │ ├── basn3p01.png │ │ │ │ ├── basn3p02.png │ │ │ │ ├── basn3p04.png │ │ │ │ ├── basn3p08.png │ │ │ │ ├── basn4a08.png │ │ │ │ ├── basn4a16.png │ │ │ │ ├── basn6a08.png │ │ │ │ ├── basn6a16.png │ │ │ │ ├── ftbbn0g01.png │ │ │ │ ├── ftbbn0g02.png │ │ │ │ ├── ftbbn0g04.png │ │ │ │ ├── ftbbn2c16.png │ │ │ │ ├── ftbbn3p08.png │ │ │ │ ├── ftbgn2c16.png │ │ │ │ ├── ftbgn3p08.png │ │ │ │ ├── ftbrn2c08.png │ │ │ │ ├── ftbwn0g16.png │ │ │ │ ├── ftbwn3p08.png │ │ │ │ ├── ftbyn3p08.png │ │ │ │ ├── ftp0n0g08.png │ │ │ │ ├── ftp0n2c08.png │ │ │ │ ├── ftp0n3p08.png │ │ │ │ ├── ftp1n3p08.png │ │ │ │ ├── ibasn0g08.png │ │ │ │ ├── ibasn0g16.png │ │ │ │ ├── ibasn2c08.png │ │ │ │ ├── ibasn2c16.png │ │ │ │ ├── ibasn3p08.png │ │ │ │ ├── ibasn4a08.png │ │ │ │ ├── ibasn4a16.png │ │ │ │ ├── ibasn6a08.png │ │ │ │ ├── ibasn6a16.png │ │ │ │ ├── iftbbn2c16.png │ │ │ │ ├── iftbbn3p08.png │ │ │ │ ├── iftbgn2c16.png │ │ │ │ ├── iftbgn3p08.png │ │ │ │ ├── iftbrn2c08.png │ │ │ │ ├── iftbwn0g16.png │ │ │ │ ├── iftbwn3p08.png │ │ │ │ ├── iftbyn3p08.png │ │ │ │ ├── iftp0n0g08.png │ │ │ │ ├── iftp0n2c08.png │ │ │ │ ├── iftp0n3p08.png │ │ │ │ ├── iftp1n3p08.png │ │ │ │ └── interlaced │ │ │ │ │ ├── README │ │ │ │ │ ├── ibasn0g01.png │ │ │ │ │ ├── ibasn0g02.png │ │ │ │ │ ├── ibasn0g04.png │ │ │ │ │ ├── ibasn3p01.png │ │ │ │ │ ├── ibasn3p02.png │ │ │ │ │ ├── ibasn3p04.png │ │ │ │ │ ├── iftbbn0g01.png │ │ │ │ │ ├── iftbbn0g02.png │ │ │ │ │ └── iftbbn0g04.png │ │ │ ├── powerpc-vsx │ │ │ │ ├── README │ │ │ │ ├── linux.c │ │ │ │ └── linux_aux.c │ │ │ ├── testpngs │ │ │ │ ├── badpal │ │ │ │ │ ├── regression-palette-8.png │ │ │ │ │ ├── small-palette-1.png │ │ │ │ │ ├── small-palette-2.png │ │ │ │ │ ├── small-palette-4.png │ │ │ │ │ ├── small-palette-8.png │ │ │ │ │ ├── test-palette-1.png │ │ │ │ │ ├── test-palette-2.png │ │ │ │ │ ├── test-palette-4.png │ │ │ │ │ └── test-palette-8.png │ │ │ │ ├── crashers │ │ │ │ │ ├── bad_iCCP.png │ │ │ │ │ ├── badadler.png │ │ │ │ │ ├── badcrc.png │ │ │ │ │ ├── empty_ancillary_chunks.png │ │ │ │ │ ├── huge_IDAT.png │ │ │ │ │ ├── huge_bKGD_chunk.png │ │ │ │ │ ├── huge_cHRM_chunk.png │ │ │ │ │ ├── huge_eXIf_chunk.png │ │ │ │ │ ├── huge_gAMA_chunk.png │ │ │ │ │ ├── huge_hIST_chunk.png │ │ │ │ │ ├── huge_iCCP_chunk.png │ │ │ │ │ ├── huge_iTXt_chunk.png │ │ │ │ │ ├── huge_juNK_unsafe_to_copy.png │ │ │ │ │ ├── huge_juNk_safe_to_copy.png │ │ │ │ │ ├── huge_pCAL_chunk.png │ │ │ │ │ ├── huge_pHYs_chunk.png │ │ │ │ │ ├── huge_sCAL_chunk.png │ │ │ │ │ ├── huge_sPLT_chunk.png │ │ │ │ │ ├── huge_sRGB_chunk.png │ │ │ │ │ ├── huge_sTER_chunk.png │ │ │ │ │ ├── huge_tEXt_chunk.png │ │ │ │ │ ├── huge_tIME_chunk.png │ │ │ │ │ └── huge_zTXt_chunk.png │ │ │ │ ├── gray-1-1.8-tRNS.png │ │ │ │ ├── gray-1-1.8.png │ │ │ │ ├── gray-1-linear-tRNS.png │ │ │ │ ├── gray-1-linear.png │ │ │ │ ├── gray-1-sRGB-tRNS.png │ │ │ │ ├── gray-1-sRGB.png │ │ │ │ ├── gray-1-tRNS.png │ │ │ │ ├── gray-1.png │ │ │ │ ├── gray-16-1.8-tRNS.png │ │ │ │ ├── gray-16-1.8.png │ │ │ │ ├── gray-16-linear-tRNS.png │ │ │ │ ├── gray-16-linear.png │ │ │ │ ├── gray-16-sRGB-tRNS.png │ │ │ │ ├── gray-16-sRGB.png │ │ │ │ ├── gray-16-tRNS.png │ │ │ │ ├── gray-16.png │ │ │ │ ├── gray-2-1.8-tRNS.png │ │ │ │ ├── gray-2-1.8.png │ │ │ │ ├── gray-2-linear-tRNS.png │ │ │ │ ├── gray-2-linear.png │ │ │ │ ├── gray-2-sRGB-tRNS.png │ │ │ │ ├── gray-2-sRGB.png │ │ │ │ ├── gray-2-tRNS.png │ │ │ │ ├── gray-2.png │ │ │ │ ├── gray-4-1.8-tRNS.png │ │ │ │ ├── gray-4-1.8.png │ │ │ │ ├── gray-4-linear-tRNS.png │ │ │ │ ├── gray-4-linear.png │ │ │ │ ├── gray-4-sRGB-tRNS.png │ │ │ │ ├── gray-4-sRGB.png │ │ │ │ ├── gray-4-tRNS.png │ │ │ │ ├── gray-4.png │ │ │ │ ├── gray-8-1.8-tRNS.png │ │ │ │ ├── gray-8-1.8.png │ │ │ │ ├── gray-8-linear-tRNS.png │ │ │ │ ├── gray-8-linear.png │ │ │ │ ├── gray-8-sRGB-tRNS.png │ │ │ │ ├── gray-8-sRGB.png │ │ │ │ ├── gray-8-tRNS.png │ │ │ │ ├── gray-8.png │ │ │ │ ├── gray-alpha-16-1.8.png │ │ │ │ ├── gray-alpha-16-linear.png │ │ │ │ ├── gray-alpha-16-sRGB.png │ │ │ │ ├── gray-alpha-16.png │ │ │ │ ├── gray-alpha-8-1.8.png │ │ │ │ ├── gray-alpha-8-linear.png │ │ │ │ ├── gray-alpha-8-sRGB.png │ │ │ │ ├── gray-alpha-8.png │ │ │ │ ├── makepngs.sh │ │ │ │ ├── palette-1-1.8-tRNS.png │ │ │ │ ├── palette-1-1.8.png │ │ │ │ ├── palette-1-linear-tRNS.png │ │ │ │ ├── palette-1-linear.png │ │ │ │ ├── palette-1-sRGB-tRNS.png │ │ │ │ ├── palette-1-sRGB.png │ │ │ │ ├── palette-1-tRNS.png │ │ │ │ ├── palette-1.png │ │ │ │ ├── palette-2-1.8-tRNS.png │ │ │ │ ├── palette-2-1.8.png │ │ │ │ ├── palette-2-linear-tRNS.png │ │ │ │ ├── palette-2-linear.png │ │ │ │ ├── palette-2-sRGB-tRNS.png │ │ │ │ ├── palette-2-sRGB.png │ │ │ │ ├── palette-2-tRNS.png │ │ │ │ ├── palette-2.png │ │ │ │ ├── palette-4-1.8-tRNS.png │ │ │ │ ├── palette-4-1.8.png │ │ │ │ ├── palette-4-linear-tRNS.png │ │ │ │ ├── palette-4-linear.png │ │ │ │ ├── palette-4-sRGB-tRNS.png │ │ │ │ ├── palette-4-sRGB.png │ │ │ │ ├── palette-4-tRNS.png │ │ │ │ ├── palette-4.png │ │ │ │ ├── palette-8-1.8-tRNS.png │ │ │ │ ├── palette-8-1.8.png │ │ │ │ ├── palette-8-linear-tRNS.png │ │ │ │ ├── palette-8-linear.png │ │ │ │ ├── palette-8-sRGB-tRNS.png │ │ │ │ ├── palette-8-sRGB.png │ │ │ │ ├── palette-8-tRNS.png │ │ │ │ ├── palette-8.png │ │ │ │ ├── png-3 │ │ │ │ │ └── cicp-display-p3_reencoded.png │ │ │ │ ├── rgb-16-1.8-tRNS.png │ │ │ │ ├── rgb-16-1.8.png │ │ │ │ ├── rgb-16-linear-tRNS.png │ │ │ │ ├── rgb-16-linear.png │ │ │ │ ├── rgb-16-sRGB-tRNS.png │ │ │ │ ├── rgb-16-sRGB.png │ │ │ │ ├── rgb-16-tRNS.png │ │ │ │ ├── rgb-16.png │ │ │ │ ├── rgb-8-1.8-tRNS.png │ │ │ │ ├── rgb-8-1.8.png │ │ │ │ ├── rgb-8-linear-tRNS.png │ │ │ │ ├── rgb-8-linear.png │ │ │ │ ├── rgb-8-sRGB-tRNS.png │ │ │ │ ├── rgb-8-sRGB.png │ │ │ │ ├── rgb-8-tRNS.png │ │ │ │ ├── rgb-8.png │ │ │ │ ├── rgb-alpha-16-1.8.png │ │ │ │ ├── rgb-alpha-16-linear.png │ │ │ │ ├── rgb-alpha-16-sRGB.png │ │ │ │ ├── rgb-alpha-16.png │ │ │ │ ├── rgb-alpha-8-1.8.png │ │ │ │ ├── rgb-alpha-8-linear.png │ │ │ │ ├── rgb-alpha-8-sRGB.png │ │ │ │ └── rgb-alpha-8.png │ │ │ ├── tools │ │ │ │ ├── README.txt │ │ │ │ ├── checksum-icc.c │ │ │ │ ├── cvtcolor.c │ │ │ │ ├── genpng.c │ │ │ │ ├── intgamma.sh │ │ │ │ ├── makesRGB.c │ │ │ │ ├── png-fix-itxt.c │ │ │ │ ├── pngcp.c │ │ │ │ ├── pngfix.c │ │ │ │ └── sRGB.h │ │ │ └── visupng │ │ │ │ ├── .editorconfig │ │ │ │ ├── PngFile.c │ │ │ │ ├── PngFile.h │ │ │ │ ├── README.txt │ │ │ │ ├── VisualPng.c │ │ │ │ ├── VisualPng.dsp │ │ │ │ ├── VisualPng.dsw │ │ │ │ ├── VisualPng.ico │ │ │ │ ├── VisualPng.png │ │ │ │ ├── VisualPng.rc │ │ │ │ ├── cexcept.h │ │ │ │ └── resource.h │ │ ├── depcomp │ │ ├── example.c │ │ ├── install-sh │ │ ├── intel │ │ │ ├── filter_sse2_intrinsics.c │ │ │ └── intel_init.c │ │ ├── libpng-config.in │ │ ├── libpng-manual.txt │ │ ├── libpng.3 │ │ ├── libpng.pc.in │ │ ├── libpngpf.3 │ │ ├── loongarch │ │ │ ├── .editorconfig │ │ │ ├── filter_lsx_intrinsics.c │ │ │ └── loongarch_lsx_init.c │ │ ├── ltmain.sh │ │ ├── mips │ │ │ ├── .editorconfig │ │ │ ├── filter_mmi_inline_assembly.c │ │ │ ├── filter_msa_intrinsics.c │ │ │ └── mips_init.c │ │ ├── missing │ │ ├── png.5 │ │ ├── png.c │ │ ├── png.h │ │ ├── pngbar.jpg │ │ ├── pngbar.png │ │ ├── pngconf.h │ │ ├── pngdebug.h │ │ ├── pngerror.c │ │ ├── pngget.c │ │ ├── pnginfo.h │ │ ├── pngmem.c │ │ ├── pngnow.png │ │ ├── pngpread.c │ │ ├── pngpriv.h │ │ ├── pngread.c │ │ ├── pngrio.c │ │ ├── pngrtran.c │ │ ├── pngrutil.c │ │ ├── pngset.c │ │ ├── pngstruct.h │ │ ├── pngtest.c │ │ ├── pngtest.png │ │ ├── pngtrans.c │ │ ├── pngusr.dfa │ │ ├── pngwio.c │ │ ├── pngwrite.c │ │ ├── pngwtran.c │ │ ├── pngwutil.c │ │ ├── powerpc │ │ │ ├── .editorconfig │ │ │ ├── filter_vsx_intrinsics.c │ │ │ └── powerpc_init.c │ │ ├── projects │ │ │ ├── .editorconfig │ │ │ ├── owatcom │ │ │ │ ├── libpng.tgt │ │ │ │ ├── libpng.wpj │ │ │ │ ├── pngconfig.mak │ │ │ │ ├── pngstest.tgt │ │ │ │ ├── pngtest.tgt │ │ │ │ └── pngvalid.tgt │ │ │ ├── visualc71 │ │ │ │ ├── PRJ0041.mak │ │ │ │ ├── README.txt │ │ │ │ ├── README_zlib.txt │ │ │ │ ├── libpng.sln │ │ │ │ ├── libpng.vcproj │ │ │ │ ├── pngtest.vcproj │ │ │ │ └── zlib.vcproj │ │ │ └── vstudio │ │ │ │ ├── README.txt │ │ │ │ ├── build.bat │ │ │ │ ├── libpng │ │ │ │ └── libpng.vcxproj │ │ │ │ ├── pnglibconf │ │ │ │ └── pnglibconf.vcxproj │ │ │ │ ├── pngstest │ │ │ │ └── pngstest.vcxproj │ │ │ │ ├── pngtest │ │ │ │ └── pngtest.vcxproj │ │ │ │ ├── pngunknown │ │ │ │ └── pngunknown.vcxproj │ │ │ │ ├── pngvalid │ │ │ │ └── pngvalid.vcxproj │ │ │ │ ├── vstudio.sln │ │ │ │ ├── zlib.props │ │ │ │ └── zlib │ │ │ │ └── zlib.vcxproj │ │ ├── riscv │ │ │ ├── .editorconfig │ │ │ ├── filter_rvv_intrinsics.c │ │ │ └── riscv_init.c │ │ ├── scripts │ │ │ ├── README.txt │ │ │ ├── SCOPTIONS.ppc │ │ │ ├── autoconf │ │ │ │ ├── README.md │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ └── lt~obsolete.m4 │ │ │ ├── checksym.awk │ │ │ ├── cmake │ │ │ │ ├── AUTHORS.md │ │ │ │ ├── PNGCheckLibconf.cmake │ │ │ │ ├── PNGConfig.cmake │ │ │ │ ├── PNGGenConfig.cmake │ │ │ │ ├── PNGTest.cmake │ │ │ │ ├── README.md │ │ │ │ ├── genchk.cmake.in │ │ │ │ ├── genout.cmake.in │ │ │ │ ├── gensrc.cmake.in │ │ │ │ └── test.cmake.in │ │ │ ├── descrip.mms │ │ │ ├── dfn.awk │ │ │ ├── intprefix.c │ │ │ ├── libpng-config-body.in │ │ │ ├── libpng-config-head.in │ │ │ ├── libpng.pc.in │ │ │ ├── macro.lst │ │ │ ├── makefile.32sunu │ │ │ ├── makefile.64sunu │ │ │ ├── makefile.aix │ │ │ ├── makefile.amiga │ │ │ ├── makefile.atari │ │ │ ├── makefile.bc32 │ │ │ ├── makefile.beos │ │ │ ├── makefile.c89 │ │ │ ├── makefile.clang │ │ │ ├── makefile.darwin │ │ │ ├── makefile.dec │ │ │ ├── makefile.dj2 │ │ │ ├── makefile.emcc │ │ │ ├── makefile.freebsd │ │ │ ├── makefile.gcc │ │ │ ├── makefile.hp64 │ │ │ ├── makefile.hpgcc │ │ │ ├── makefile.hpux │ │ │ ├── makefile.ibmc │ │ │ ├── makefile.intel │ │ │ ├── makefile.linux │ │ │ ├── makefile.mips │ │ │ ├── makefile.msys │ │ │ ├── makefile.netbsd │ │ │ ├── makefile.openbsd │ │ │ ├── makefile.riscos │ │ │ ├── makefile.sco │ │ │ ├── makefile.sggcc │ │ │ ├── makefile.sgi │ │ │ ├── makefile.so9 │ │ │ ├── makefile.solaris │ │ │ ├── makefile.std │ │ │ ├── makefile.sunos │ │ │ ├── makefile.vcwin-arm64 │ │ │ ├── makefile.vcwin32 │ │ │ ├── makevms.com │ │ │ ├── options.awk │ │ │ ├── pnglibconf.dfa │ │ │ ├── pnglibconf.h.prebuilt │ │ │ ├── pnglibconf.mak │ │ │ ├── pngwin.rc │ │ │ ├── prefix.c │ │ │ ├── smakefile.ppc │ │ │ ├── sym.c │ │ │ ├── symbols.c │ │ │ ├── symbols.def │ │ │ └── vers.c │ │ ├── test-driver │ │ └── tests │ │ │ ├── pngimage-full │ │ │ ├── pngimage-quick │ │ │ ├── pngstest │ │ │ ├── pngstest-1.8 │ │ │ ├── pngstest-1.8-alpha │ │ │ ├── pngstest-linear │ │ │ ├── pngstest-linear-alpha │ │ │ ├── pngstest-none │ │ │ ├── pngstest-none-alpha │ │ │ ├── pngstest-sRGB │ │ │ ├── pngstest-sRGB-alpha │ │ │ ├── pngtest-all │ │ │ ├── pngunknown-IDAT │ │ │ ├── pngunknown-discard │ │ │ ├── pngunknown-if-safe │ │ │ ├── pngunknown-sAPI │ │ │ ├── pngunknown-sTER │ │ │ ├── pngunknown-save │ │ │ ├── pngunknown-vpAg │ │ │ ├── pngvalid-gamma-16-to-8 │ │ │ ├── pngvalid-gamma-alpha-mode │ │ │ ├── pngvalid-gamma-background │ │ │ ├── pngvalid-gamma-expand16-alpha-mode │ │ │ ├── pngvalid-gamma-expand16-background │ │ │ ├── pngvalid-gamma-expand16-transform │ │ │ ├── pngvalid-gamma-sbit │ │ │ ├── pngvalid-gamma-threshold │ │ │ ├── pngvalid-gamma-transform │ │ │ ├── pngvalid-progressive-interlace-standard │ │ │ ├── pngvalid-progressive-size │ │ │ ├── pngvalid-progressive-standard │ │ │ ├── pngvalid-standard │ │ │ └── pngvalid-transform │ ├── lzma │ │ ├── 7z.h │ │ ├── 7zAlloc.c │ │ ├── 7zAlloc.h │ │ ├── 7zArcIn.c │ │ ├── 7zBuf.c │ │ ├── 7zBuf.h │ │ ├── 7zBuf2.c │ │ ├── 7zCrc.c │ │ ├── 7zCrc.h │ │ ├── 7zCrcOpt.c │ │ ├── 7zDec.c │ │ ├── 7zFile.c │ │ ├── 7zFile.h │ │ ├── 7zStream.c │ │ ├── 7zTypes.h │ │ ├── 7zVersion.h │ │ ├── 7zVersion.rc │ │ ├── Aes.c │ │ ├── Aes.h │ │ ├── AesOpt.c │ │ ├── Alloc.c │ │ ├── Alloc.h │ │ ├── Bcj2.c │ │ ├── Bcj2.h │ │ ├── Bcj2Enc.c │ │ ├── Bra.c │ │ ├── Bra.h │ │ ├── Bra86.c │ │ ├── BraIA64.c │ │ ├── Compiler.h │ │ ├── CpuArch.c │ │ ├── CpuArch.h │ │ ├── Delta.c │ │ ├── Delta.h │ │ ├── DllSecur.c │ │ ├── DllSecur.h │ │ ├── LzFind.c │ │ ├── LzFind.h │ │ ├── LzFindMt.c │ │ ├── LzFindMt.h │ │ ├── LzHash.h │ │ ├── Lzma2Dec.c │ │ ├── Lzma2Dec.h │ │ ├── Lzma2DecMt.c │ │ ├── Lzma2DecMt.h │ │ ├── Lzma2Enc.c │ │ ├── Lzma2Enc.h │ │ ├── Lzma86.h │ │ ├── Lzma86Dec.c │ │ ├── Lzma86Enc.c │ │ ├── LzmaDec.c │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.c │ │ ├── LzmaEnc.h │ │ ├── LzmaLib.c │ │ ├── LzmaLib.h │ │ ├── MtCoder.c │ │ ├── MtCoder.h │ │ ├── MtDec.c │ │ ├── MtDec.h │ │ ├── Ppmd.h │ │ ├── Ppmd7.c │ │ ├── Ppmd7.h │ │ ├── Ppmd7Dec.c │ │ ├── Ppmd7Enc.c │ │ ├── Precomp.h │ │ ├── RotateDefs.h │ │ ├── Sha256.c │ │ ├── Sha256.h │ │ ├── Sort.c │ │ ├── Sort.h │ │ ├── Threads.c │ │ ├── Threads.h │ │ ├── Util │ │ │ ├── 7z │ │ │ │ ├── 7z.dsp │ │ │ │ ├── 7z.dsw │ │ │ │ ├── 7zMain.c │ │ │ │ ├── Precomp.c │ │ │ │ ├── Precomp.h │ │ │ │ ├── makefile │ │ │ │ └── makefile.gcc │ │ │ ├── Lzma │ │ │ │ ├── LzmaUtil.c │ │ │ │ ├── LzmaUtil.dsp │ │ │ │ ├── LzmaUtil.dsw │ │ │ │ ├── makefile │ │ │ │ └── makefile.gcc │ │ │ ├── LzmaLib │ │ │ │ ├── LzmaLib.def │ │ │ │ ├── LzmaLib.dsp │ │ │ │ ├── LzmaLib.dsw │ │ │ │ ├── LzmaLibExports.c │ │ │ │ ├── makefile │ │ │ │ └── resource.rc │ │ │ └── SfxSetup │ │ │ │ ├── Precomp.c │ │ │ │ ├── Precomp.h │ │ │ │ ├── SfxSetup.c │ │ │ │ ├── SfxSetup.dsp │ │ │ │ ├── SfxSetup.dsw │ │ │ │ ├── makefile │ │ │ │ ├── makefile_con │ │ │ │ ├── resource.rc │ │ │ │ └── setup.ico │ │ ├── Xz.c │ │ ├── Xz.h │ │ ├── XzCrc64.c │ │ ├── XzCrc64.h │ │ ├── XzCrc64Opt.c │ │ ├── XzDec.c │ │ ├── XzEnc.c │ │ ├── XzEnc.h │ │ └── XzIn.c │ ├── sqlite3 │ │ ├── sqlite3.c │ │ ├── sqlite3.h │ │ └── sqlite3ext.h │ └── zlib │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── FAQ │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── adler32.c │ │ ├── amiga │ │ ├── Makefile.pup │ │ └── Makefile.sas │ │ ├── compress.c │ │ ├── configure │ │ ├── contrib │ │ ├── README.contrib │ │ ├── ada │ │ │ ├── buffer_demo.adb │ │ │ ├── mtest.adb │ │ │ ├── read.adb │ │ │ ├── readme.txt │ │ │ ├── test.adb │ │ │ ├── zlib-streams.adb │ │ │ ├── zlib-streams.ads │ │ │ ├── zlib-thin.adb │ │ │ ├── zlib-thin.ads │ │ │ ├── zlib.adb │ │ │ ├── zlib.ads │ │ │ └── zlib.gpr │ │ ├── blast │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── blast.c │ │ │ ├── blast.h │ │ │ ├── test.pk │ │ │ └── test.txt │ │ ├── delphi │ │ │ ├── ZLib.pas │ │ │ ├── ZLibConst.pas │ │ │ ├── readme.txt │ │ │ └── zlibd32.mak │ │ ├── dotzlib │ │ │ ├── DotZLib.build │ │ │ ├── DotZLib.chm │ │ │ ├── DotZLib.sln │ │ │ ├── DotZLib │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ ├── CircularBuffer.cs │ │ │ │ ├── CodecBase.cs │ │ │ │ ├── Deflater.cs │ │ │ │ ├── DotZLib.cs │ │ │ │ ├── DotZLib.csproj │ │ │ │ ├── GZipStream.cs │ │ │ │ ├── Inflater.cs │ │ │ │ └── UnitTests.cs │ │ │ ├── LICENSE_1_0.txt │ │ │ └── readme.txt │ │ ├── gcc_gvmat64 │ │ │ └── gvmat64.S │ │ ├── infback9 │ │ │ ├── README │ │ │ ├── infback9.c │ │ │ ├── infback9.h │ │ │ ├── inffix9.h │ │ │ ├── inflate9.h │ │ │ ├── inftree9.c │ │ │ └── inftree9.h │ │ ├── iostream │ │ │ ├── test.cpp │ │ │ ├── zfstream.cpp │ │ │ └── zfstream.h │ │ ├── iostream2 │ │ │ ├── zstream.h │ │ │ └── zstream_test.cpp │ │ ├── iostream3 │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── test.cc │ │ │ ├── zfstream.cc │ │ │ └── zfstream.h │ │ ├── minizip │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── MiniZip64_Changes.txt │ │ │ ├── MiniZip64_info.txt │ │ │ ├── configure.ac │ │ │ ├── crypt.h │ │ │ ├── ioapi.c │ │ │ ├── ioapi.h │ │ │ ├── iowin32.c │ │ │ ├── iowin32.h │ │ │ ├── make_vms.com │ │ │ ├── miniunz.c │ │ │ ├── miniunzip.1 │ │ │ ├── minizip.1 │ │ │ ├── minizip.c │ │ │ ├── minizip.pc.in │ │ │ ├── mztools.c │ │ │ ├── mztools.h │ │ │ ├── unzip.c │ │ │ ├── unzip.h │ │ │ ├── zip.c │ │ │ └── zip.h │ │ ├── pascal │ │ │ ├── example.pas │ │ │ ├── readme.txt │ │ │ ├── zlibd32.mak │ │ │ └── zlibpas.pas │ │ ├── puff │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── puff.c │ │ │ ├── puff.h │ │ │ ├── pufftest.c │ │ │ └── zeros.raw │ │ ├── testzlib │ │ │ ├── testzlib.c │ │ │ └── testzlib.txt │ │ ├── untgz │ │ │ ├── Makefile │ │ │ ├── Makefile.msc │ │ │ └── untgz.c │ │ └── vstudio │ │ │ ├── readme.txt │ │ │ ├── vc10 │ │ │ ├── miniunz.vcxproj │ │ │ ├── miniunz.vcxproj.filters │ │ │ ├── minizip.vcxproj │ │ │ ├── minizip.vcxproj.filters │ │ │ ├── testzlib.vcxproj │ │ │ ├── testzlib.vcxproj.filters │ │ │ ├── testzlibdll.vcxproj │ │ │ ├── testzlibdll.vcxproj.filters │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcxproj │ │ │ ├── zlibstat.vcxproj.filters │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ ├── zlibvc.vcxproj │ │ │ └── zlibvc.vcxproj.filters │ │ │ ├── vc11 │ │ │ ├── miniunz.vcxproj │ │ │ ├── minizip.vcxproj │ │ │ ├── testzlib.vcxproj │ │ │ ├── testzlibdll.vcxproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcxproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcxproj │ │ │ ├── vc12 │ │ │ ├── miniunz.vcxproj │ │ │ ├── minizip.vcxproj │ │ │ ├── testzlib.vcxproj │ │ │ ├── testzlibdll.vcxproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcxproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcxproj │ │ │ ├── vc14 │ │ │ ├── miniunz.vcxproj │ │ │ ├── minizip.vcxproj │ │ │ ├── testzlib.vcxproj │ │ │ ├── testzlibdll.vcxproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcxproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcxproj │ │ │ └── vc9 │ │ │ ├── miniunz.vcproj │ │ │ ├── minizip.vcproj │ │ │ ├── testzlib.vcproj │ │ │ ├── testzlibdll.vcproj │ │ │ ├── zlib.rc │ │ │ ├── zlibstat.vcproj │ │ │ ├── zlibvc.def │ │ │ ├── zlibvc.sln │ │ │ └── zlibvc.vcproj │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── doc │ │ ├── algorithm.txt │ │ ├── crc-doc.1.0.pdf │ │ ├── rfc1950.txt │ │ ├── rfc1951.txt │ │ ├── rfc1952.txt │ │ └── txtvsbin.txt │ │ ├── examples │ │ ├── README.examples │ │ ├── enough.c │ │ ├── fitblk.c │ │ ├── gun.c │ │ ├── gzappend.c │ │ ├── gzjoin.c │ │ ├── gzlog.c │ │ ├── gzlog.h │ │ ├── gznorm.c │ │ ├── zlib_how.html │ │ ├── zpipe.c │ │ ├── zran.c │ │ └── zran.h │ │ ├── gzclose.c │ │ ├── gzguts.h │ │ ├── gzlib.c │ │ ├── gzread.c │ │ ├── gzwrite.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── make_vms.com │ │ ├── msdos │ │ ├── Makefile.bor │ │ ├── Makefile.dj2 │ │ ├── Makefile.emx │ │ ├── Makefile.msc │ │ └── Makefile.tc │ │ ├── nintendods │ │ ├── Makefile │ │ └── README │ │ ├── old │ │ ├── Makefile.emx │ │ ├── Makefile.riscos │ │ ├── README │ │ ├── descrip.mms │ │ ├── os2 │ │ │ ├── Makefile.os2 │ │ │ └── zlib.def │ │ └── visual-basic.txt │ │ ├── os400 │ │ ├── README400 │ │ ├── bndsrc │ │ ├── make.sh │ │ └── zlib.inc │ │ ├── qnx │ │ └── package.qpg │ │ ├── test │ │ ├── example.c │ │ ├── infcover.c │ │ └── minigzip.c │ │ ├── treebuild.xml │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── watcom │ │ ├── watcom_f.mak │ │ └── watcom_l.mak │ │ ├── win32 │ │ ├── DLL_FAQ.txt │ │ ├── Makefile.bor │ │ ├── Makefile.gcc │ │ ├── Makefile.msc │ │ ├── README-WIN32.txt │ │ ├── VisualC.txt │ │ ├── zlib.def │ │ └── zlib1.rc │ │ ├── zconf.h │ │ ├── zconf.h.cmakein │ │ ├── zconf.h.in │ │ ├── zlib.3 │ │ ├── zlib.3.pdf │ │ ├── zlib.h │ │ ├── zlib.map │ │ ├── zlib.pc.cmakein │ │ ├── zlib.pc.in │ │ ├── zlib2ansi │ │ ├── zutil.c │ │ └── zutil.h ├── tools │ ├── docgen.c │ ├── font-sdf.c │ └── updater-main.c └── util │ ├── CMakeLists.txt │ ├── audio-buffer.c │ ├── audio-resampler.c │ ├── circle-buffer.c │ ├── configuration.c │ ├── convolve.c │ ├── crc32.c │ ├── elf-read.c │ ├── formatting.c │ ├── gbk-table.c │ ├── geometry.c │ ├── gui.c │ ├── gui │ ├── file-select.c │ ├── font-metrics.c │ ├── font.c │ └── menu.c │ ├── hash.c │ ├── image.c │ ├── image │ ├── export.c │ ├── font.c │ └── png-io.c │ ├── interpolator.c │ ├── md5.c │ ├── memory.c │ ├── patch-fast.c │ ├── patch-ips.c │ ├── patch-ups.c │ ├── patch.c │ ├── ring-fifo.c │ ├── sfo.c │ ├── sha1.c │ ├── string.c │ ├── table.c │ ├── test │ ├── circle-buffer.c │ ├── color.c │ ├── geometry.c │ ├── hash.c │ ├── image.c │ ├── sfo.c │ ├── string-parser.c │ ├── string-utf8.c │ ├── suite.h │ ├── table.c │ ├── text-codec.c │ └── vfs.c │ ├── text-codec.c │ ├── vector.c │ ├── vfs.c │ └── vfs │ ├── vfs-devlist.c │ ├── vfs-dirent.c │ ├── vfs-fd.c │ ├── vfs-fifo.c │ ├── vfs-file.c │ ├── vfs-lzma.c │ ├── vfs-mem.c │ └── vfs-zip.c ├── tools ├── debian │ ├── changelog │ ├── clean │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── libmgba.install.in │ ├── libretro-mgba.install.in │ ├── mgba-qt.install │ ├── mgba-qt.manpages │ ├── mgba-sdl.install │ ├── mgba-sdl.manpages │ ├── rules │ ├── source │ │ └── format │ └── watch ├── deploy-mac.py ├── deploy-win.sh ├── dlls.gdb ├── make-dotcode.py ├── perf.py ├── sanitize-deb.sh └── snes-tile.py └── version.cmake /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: mgba 2 | custom: https://mgba.io/donate.html 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/CHANGES -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/LICENSE -------------------------------------------------------------------------------- /PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/PORTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/README.md -------------------------------------------------------------------------------- /README_DE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/README_DE.md -------------------------------------------------------------------------------- /README_ES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/README_ES.md -------------------------------------------------------------------------------- /README_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/README_JP.md -------------------------------------------------------------------------------- /README_ZH_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/README_ZH_CN.md -------------------------------------------------------------------------------- /cinema/.gitignore: -------------------------------------------------------------------------------- 1 | *.sav 2 | -------------------------------------------------------------------------------- /cinema/gb/acid/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=15 3 | frames=1 4 | 5 | [ports.cinema] 6 | sgb.borders=0 7 | -------------------------------------------------------------------------------- /cinema/gb/acid/dmg-acid2/test.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/cinema/gb/acid/dmg-acid2/test.gb -------------------------------------------------------------------------------- /cinema/gb/blargg/cgb_sound/02-len ctr/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=600 3 | -------------------------------------------------------------------------------- /cinema/gb/blargg/cgb_sound/03-trigger/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=1080 3 | -------------------------------------------------------------------------------- /cinema/gb/blargg/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=360 3 | frames=1 4 | -------------------------------------------------------------------------------- /cinema/gb/blargg/cpu_instrs/03-op sp,hl/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=600 3 | fail=1 4 | -------------------------------------------------------------------------------- /cinema/gb/blargg/cpu_instrs/10-bit ops/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=600 3 | -------------------------------------------------------------------------------- /cinema/gb/blargg/cpu_instrs/11-op a,(hl)/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=600 3 | -------------------------------------------------------------------------------- /cinema/gb/blargg/dmg_sound/02-len ctr/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=600 3 | -------------------------------------------------------------------------------- /cinema/gb/blargg/dmg_sound/03-trigger/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=1080 3 | -------------------------------------------------------------------------------- /cinema/gb/blargg/dmg_sound/10-wave trigger while on/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/cinema/gb/mooneye-gb/LICENSE -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/boot_div-dmg0/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/boot_div-dmgABCmgb/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/boot_div2-S/config.ini: -------------------------------------------------------------------------------- 1 | [ports.cinema] 2 | gb.model=SGB 3 | 4 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/boot_hwio-S/config.ini: -------------------------------------------------------------------------------- 1 | [ports.cinema] 2 | gb.model=SGB 3 | 4 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/boot_hwio-dmg0/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/boot_regs-dmg0/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/boot_regs-mgb/config.ini: -------------------------------------------------------------------------------- 1 | [ports.cinema] 2 | gb.model=MGB 3 | 4 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/boot_regs-sgb/config.ini: -------------------------------------------------------------------------------- 1 | [ports.cinema] 2 | gb.model=SGB 3 | 4 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/boot_regs-sgb2/config.ini: -------------------------------------------------------------------------------- 1 | [ports.cinema] 2 | gb.model=SGB2 3 | 4 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/oam_dma_start/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/ppu/hblank_ly_scx_timing-GS/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/ppu/intr_2_mode0_timing_sprites/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/ppu/lcdon_timing-GS/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/ppu/lcdon_write_timing-GS/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/push_timing/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/serial/boot_sclk_align-dmgABCmgb/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/acceptance/timer/rapid_toggle/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=120 3 | fail=1 4 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=60 3 | frames=1 4 | 5 | [ports.cinema] 6 | sgb.borders=0 7 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/emulator-only/mbc1/bits_bank1/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=180 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/emulator-only/mbc1/bits_bank2/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=180 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/emulator-only/mbc1/bits_mode/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=180 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/emulator-only/mbc1/bits_ramg/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=360 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/emulator-only/mbc2/bits_ramg/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=360 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/emulator-only/mbc2/bits_romb/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=360 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/emulator-only/mbc2/bits_unused/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=180 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/madness/mgb_oam_dma_halt_sprites/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/misc/boot_div-cgb0/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/misc/boot_hwio-C/config.ini: -------------------------------------------------------------------------------- 1 | [ports.cinema] 2 | gb.model=CGB 3 | 4 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/misc/boot_hwio-C/test.sav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/misc/boot_regs-A/config.ini: -------------------------------------------------------------------------------- 1 | [ports.cinema] 2 | gb.model=AGB 3 | 4 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/misc/boot_regs-cgb/config.ini: -------------------------------------------------------------------------------- 1 | [ports.cinema] 2 | gb.model=CGB 3 | 4 | -------------------------------------------------------------------------------- /cinema/gb/mooneye-gb/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/cinema/gb/mooneye-gb/update.py -------------------------------------------------------------------------------- /cinema/gb/ramg-mbc3/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=60 3 | frames=1 4 | 5 | [ports.cinema] 6 | sgb.borders=0 7 | -------------------------------------------------------------------------------- /cinema/gb/ramg-mbc3/test.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/cinema/gb/ramg-mbc3/test.gb -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/align/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/align_cpu/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/delay/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/duty/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/duty_delay/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/extra_length_clocking-cgb0B/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/freq_change/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/freq_change_timing-A/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/freq_change_timing-cgb0BC/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/freq_change_timing-cgbDE/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/nrx2_glitch/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/nrx2_speed_change/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | skip=180 4 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/restart/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/restart_nrx2_glitch/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/stop_div/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/stop_restart/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/sweep/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/sweep_restart/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/sweep_restart_2/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/volume/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_1/volume_div/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | skip=120 4 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_2/align/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_2/align_cpu/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_2/delay/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_2/duty/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_2/duty_delay/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_2/extra_length_clocking-cgb0B/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_2/freq_change/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_2/nrx2_glitch/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_2/nrx2_speed_change/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | skip=180 4 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_2/restart/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_2/restart_nrx2_glitch/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_2/stop_div/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_2/stop_restart/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_2/volume/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_2/volume_div/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_3/and_glitch/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_3/delay/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_3/extra_length_clocking-cgb0/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_3/extra_length_clocking-cgbB/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_3/first_sample/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_3/freq_change_delay/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_3/restart_during_delay/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_3/restart_stop_delay/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_3/shift_skip_delay/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_3/stop_delay/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_3/stop_div/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_3/wave_ram_sync/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_4/align/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_4/delay/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_4/equivalent_frequencies/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_4/extra_length_clocking-cgb0B/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_4/freq_change/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_4/frequency_alignment/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_4/lfsr/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_4/lfsr15/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_4/lfsr_15_7/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_4/lfsr_7_15/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_4/lfsr_restart/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_4/lfsr_restart_fast/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/channel_4/volume_div/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=120 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/div_trigger_volume_10/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=80 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/div_write_trigger/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/div_write_trigger_10/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/div_write_trigger_volume/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/apu/div_write_trigger_volume_10/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=60 3 | frames=1 4 | 5 | [ports.cinema] 6 | sgb.borders=0 7 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/dma/hdma_lcd_off/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/dma/hdma_mode0/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/samesuite/interrupt/ei_delay_halt/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | fail=1 3 | -------------------------------------------------------------------------------- /cinema/gb/window/dk94-split/test.sav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cinema/gb/window/gsc-battle/test.sav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cinema/gb/window/zoos-intro/test.sav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cinema/gba/bg/lady-sia/test.mvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/cinema/gba/bg/lady-sia/test.mvl -------------------------------------------------------------------------------- /cinema/gba/blend/disabled-bg-semitrans-blend/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=10 3 | frames=1 4 | -------------------------------------------------------------------------------- /cinema/gba/blend/mzm-layering/test.sav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cinema/gba/irq/keyirq/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/cinema/gba/irq/keyirq/config.ini -------------------------------------------------------------------------------- /cinema/gba/irq/keyirq/test.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/cinema/gba/irq/keyirq/test.gba -------------------------------------------------------------------------------- /cinema/gba/obj/2d-wrap/config.ini: -------------------------------------------------------------------------------- 1 | [testinfo] 2 | skip=1 3 | frames=1 4 | -------------------------------------------------------------------------------- /cinema/gba/obj/2d-wrap/test.gba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/cinema/gba/obj/2d-wrap/test.gba -------------------------------------------------------------------------------- /doc/mgba-qt.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/doc/mgba-qt.6 -------------------------------------------------------------------------------- /doc/mgba.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/doc/mgba.6 -------------------------------------------------------------------------------- /include/mgba-util/audio-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/audio-buffer.h -------------------------------------------------------------------------------- /include/mgba-util/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/common.h -------------------------------------------------------------------------------- /include/mgba-util/convolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/convolve.h -------------------------------------------------------------------------------- /include/mgba-util/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/crc32.h -------------------------------------------------------------------------------- /include/mgba-util/dllexports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/dllexports.h -------------------------------------------------------------------------------- /include/mgba-util/elf-read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/elf-read.h -------------------------------------------------------------------------------- /include/mgba-util/formatting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/formatting.h -------------------------------------------------------------------------------- /include/mgba-util/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/geometry.h -------------------------------------------------------------------------------- /include/mgba-util/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/gui.h -------------------------------------------------------------------------------- /include/mgba-util/gui/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/gui/font.h -------------------------------------------------------------------------------- /include/mgba-util/gui/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/gui/menu.h -------------------------------------------------------------------------------- /include/mgba-util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/hash.h -------------------------------------------------------------------------------- /include/mgba-util/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/image.h -------------------------------------------------------------------------------- /include/mgba-util/image/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/image/export.h -------------------------------------------------------------------------------- /include/mgba-util/image/png-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/image/png-io.h -------------------------------------------------------------------------------- /include/mgba-util/interpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/interpolator.h -------------------------------------------------------------------------------- /include/mgba-util/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/macros.h -------------------------------------------------------------------------------- /include/mgba-util/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/math.h -------------------------------------------------------------------------------- /include/mgba-util/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/md5.h -------------------------------------------------------------------------------- /include/mgba-util/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/memory.h -------------------------------------------------------------------------------- /include/mgba-util/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/patch.h -------------------------------------------------------------------------------- /include/mgba-util/patch/fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/patch/fast.h -------------------------------------------------------------------------------- /include/mgba-util/patch/ips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/patch/ips.h -------------------------------------------------------------------------------- /include/mgba-util/patch/ups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/patch/ups.h -------------------------------------------------------------------------------- /include/mgba-util/ring-fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/ring-fifo.h -------------------------------------------------------------------------------- /include/mgba-util/sfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/sfo.h -------------------------------------------------------------------------------- /include/mgba-util/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/sha1.h -------------------------------------------------------------------------------- /include/mgba-util/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/socket.h -------------------------------------------------------------------------------- /include/mgba-util/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/string.h -------------------------------------------------------------------------------- /include/mgba-util/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/table.h -------------------------------------------------------------------------------- /include/mgba-util/text-codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/text-codec.h -------------------------------------------------------------------------------- /include/mgba-util/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/threading.h -------------------------------------------------------------------------------- /include/mgba-util/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/vector.h -------------------------------------------------------------------------------- /include/mgba-util/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba-util/vfs.h -------------------------------------------------------------------------------- /include/mgba/core/bitmap-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/bitmap-cache.h -------------------------------------------------------------------------------- /include/mgba/core/cache-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/cache-set.h -------------------------------------------------------------------------------- /include/mgba/core/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/cheats.h -------------------------------------------------------------------------------- /include/mgba/core/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/config.h -------------------------------------------------------------------------------- /include/mgba/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/core.h -------------------------------------------------------------------------------- /include/mgba/core/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/cpu.h -------------------------------------------------------------------------------- /include/mgba/core/directories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/directories.h -------------------------------------------------------------------------------- /include/mgba/core/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/input.h -------------------------------------------------------------------------------- /include/mgba/core/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/interface.h -------------------------------------------------------------------------------- /include/mgba/core/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/library.h -------------------------------------------------------------------------------- /include/mgba/core/lockstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/lockstep.h -------------------------------------------------------------------------------- /include/mgba/core/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/log.h -------------------------------------------------------------------------------- /include/mgba/core/map-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/map-cache.h -------------------------------------------------------------------------------- /include/mgba/core/mem-search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/mem-search.h -------------------------------------------------------------------------------- /include/mgba/core/rewind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/rewind.h -------------------------------------------------------------------------------- /include/mgba/core/scripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/scripting.h -------------------------------------------------------------------------------- /include/mgba/core/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/serialize.h -------------------------------------------------------------------------------- /include/mgba/core/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/sync.h -------------------------------------------------------------------------------- /include/mgba/core/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/thread.h -------------------------------------------------------------------------------- /include/mgba/core/tile-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/tile-cache.h -------------------------------------------------------------------------------- /include/mgba/core/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/timing.h -------------------------------------------------------------------------------- /include/mgba/core/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/core/version.h -------------------------------------------------------------------------------- /include/mgba/debugger/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/debugger/debugger.h -------------------------------------------------------------------------------- /include/mgba/feature/updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/feature/updater.h -------------------------------------------------------------------------------- /include/mgba/gb/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/gb/core.h -------------------------------------------------------------------------------- /include/mgba/gb/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/gb/interface.h -------------------------------------------------------------------------------- /include/mgba/gba/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/gba/core.h -------------------------------------------------------------------------------- /include/mgba/gba/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/gba/interface.h -------------------------------------------------------------------------------- /include/mgba/internal/arm/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/internal/arm/arm.h -------------------------------------------------------------------------------- /include/mgba/internal/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/internal/defines.h -------------------------------------------------------------------------------- /include/mgba/internal/gb/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/internal/gb/audio.h -------------------------------------------------------------------------------- /include/mgba/internal/gb/gb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/internal/gb/gb.h -------------------------------------------------------------------------------- /include/mgba/internal/gb/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/internal/gb/input.h -------------------------------------------------------------------------------- /include/mgba/internal/gb/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/internal/gb/io.h -------------------------------------------------------------------------------- /include/mgba/internal/gb/mbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/internal/gb/mbc.h -------------------------------------------------------------------------------- /include/mgba/internal/gb/sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/internal/gb/sio.h -------------------------------------------------------------------------------- /include/mgba/internal/gb/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/internal/gb/timer.h -------------------------------------------------------------------------------- /include/mgba/internal/gb/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/internal/gb/video.h -------------------------------------------------------------------------------- /include/mgba/internal/gba/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/internal/gba/bios.h -------------------------------------------------------------------------------- /include/mgba/internal/gba/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/internal/gba/dma.h -------------------------------------------------------------------------------- /include/mgba/internal/gba/gba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/internal/gba/gba.h -------------------------------------------------------------------------------- /include/mgba/internal/gba/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/internal/gba/io.h -------------------------------------------------------------------------------- /include/mgba/internal/gba/sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/internal/gba/sio.h -------------------------------------------------------------------------------- /include/mgba/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/script.h -------------------------------------------------------------------------------- /include/mgba/script/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/script/base.h -------------------------------------------------------------------------------- /include/mgba/script/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/script/canvas.h -------------------------------------------------------------------------------- /include/mgba/script/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/script/console.h -------------------------------------------------------------------------------- /include/mgba/script/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/script/context.h -------------------------------------------------------------------------------- /include/mgba/script/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/script/input.h -------------------------------------------------------------------------------- /include/mgba/script/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/script/macros.h -------------------------------------------------------------------------------- /include/mgba/script/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/script/storage.h -------------------------------------------------------------------------------- /include/mgba/script/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/include/mgba/script/types.h -------------------------------------------------------------------------------- /opt/libgba/mgba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/opt/libgba/mgba.c -------------------------------------------------------------------------------- /opt/libgba/mgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/opt/libgba/mgba.h -------------------------------------------------------------------------------- /res/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/entitlements.plist -------------------------------------------------------------------------------- /res/exe4/chip-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/exe4/chip-names.txt -------------------------------------------------------------------------------- /res/exe4/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/exe4/placeholder.png -------------------------------------------------------------------------------- /res/exe5/chip-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/exe5/chip-names.txt -------------------------------------------------------------------------------- /res/exe5/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/exe5/placeholder.png -------------------------------------------------------------------------------- /res/exe6/chip-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/exe6/chip-names.txt -------------------------------------------------------------------------------- /res/exe6/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/exe6/placeholder.png -------------------------------------------------------------------------------- /res/font-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/font-mask.png -------------------------------------------------------------------------------- /res/font-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/font-new.png -------------------------------------------------------------------------------- /res/font-sdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/font-sdf.png -------------------------------------------------------------------------------- /res/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/font.png -------------------------------------------------------------------------------- /res/font2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/font2x.png -------------------------------------------------------------------------------- /res/gb-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gb-icon-128.png -------------------------------------------------------------------------------- /res/gb-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gb-icon-16.png -------------------------------------------------------------------------------- /res/gb-icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gb-icon-24.png -------------------------------------------------------------------------------- /res/gb-icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gb-icon-256.png -------------------------------------------------------------------------------- /res/gb-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gb-icon-32.png -------------------------------------------------------------------------------- /res/gb-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gb-icon.svg -------------------------------------------------------------------------------- /res/gba-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gba-icon-128.png -------------------------------------------------------------------------------- /res/gba-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gba-icon-16.png -------------------------------------------------------------------------------- /res/gba-icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gba-icon-24.png -------------------------------------------------------------------------------- /res/gba-icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gba-icon-256.png -------------------------------------------------------------------------------- /res/gba-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gba-icon-32.png -------------------------------------------------------------------------------- /res/gba-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gba-icon.svg -------------------------------------------------------------------------------- /res/gbc-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gbc-icon-128.png -------------------------------------------------------------------------------- /res/gbc-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gbc-icon-16.png -------------------------------------------------------------------------------- /res/gbc-icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gbc-icon-24.png -------------------------------------------------------------------------------- /res/gbc-icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gbc-icon-256.png -------------------------------------------------------------------------------- /res/gbc-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gbc-icon-32.png -------------------------------------------------------------------------------- /res/gbc-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/gbc-icon.svg -------------------------------------------------------------------------------- /res/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/icons.png -------------------------------------------------------------------------------- /res/icons2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/icons2x.png -------------------------------------------------------------------------------- /res/info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/info.plist.in -------------------------------------------------------------------------------- /res/io.mgba.mGBA.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/io.mgba.mGBA.metainfo.xml.in -------------------------------------------------------------------------------- /res/keymap.qpic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/keymap.qpic -------------------------------------------------------------------------------- /res/keymap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/keymap.svg -------------------------------------------------------------------------------- /res/licenses/discord-rpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/licenses/discord-rpc.txt -------------------------------------------------------------------------------- /res/licenses/inih.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/licenses/inih.txt -------------------------------------------------------------------------------- /res/licenses/rapidjson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/licenses/rapidjson.txt -------------------------------------------------------------------------------- /res/mgba-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/mgba-1024.png -------------------------------------------------------------------------------- /res/mgba-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/mgba-128.png -------------------------------------------------------------------------------- /res/mgba-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/mgba-16.png -------------------------------------------------------------------------------- /res/mgba-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/mgba-24.png -------------------------------------------------------------------------------- /res/mgba-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/mgba-256.png -------------------------------------------------------------------------------- /res/mgba-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/mgba-32.png -------------------------------------------------------------------------------- /res/mgba-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/mgba-48.png -------------------------------------------------------------------------------- /res/mgba-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/mgba-512.png -------------------------------------------------------------------------------- /res/mgba-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/mgba-64.png -------------------------------------------------------------------------------- /res/mgba-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/mgba-96.png -------------------------------------------------------------------------------- /res/mgba-qt.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/mgba-qt.desktop -------------------------------------------------------------------------------- /res/mgba.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/mgba.icns -------------------------------------------------------------------------------- /res/mgba.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/mgba.ico -------------------------------------------------------------------------------- /res/mgba.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/mgba.rc.in -------------------------------------------------------------------------------- /res/no-cam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/no-cam.png -------------------------------------------------------------------------------- /res/nointro.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/nointro.dat -------------------------------------------------------------------------------- /res/patrons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/patrons.txt -------------------------------------------------------------------------------- /res/scripts/demos/color-mask.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/scripts/demos/color-mask.lua -------------------------------------------------------------------------------- /res/scripts/demos/logo-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/scripts/demos/logo-bg.png -------------------------------------------------------------------------------- /res/scripts/demos/logo-fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/scripts/demos/logo-fg.png -------------------------------------------------------------------------------- /res/scripts/demos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/scripts/demos/logo.png -------------------------------------------------------------------------------- /res/scripts/demos/pokemon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/scripts/demos/pokemon.lua -------------------------------------------------------------------------------- /res/scripts/demos/sockettest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/scripts/demos/sockettest.lua -------------------------------------------------------------------------------- /res/scripts/demos/text-demo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/scripts/demos/text-demo.lua -------------------------------------------------------------------------------- /res/scripts/demos/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/scripts/demos/wheel.png -------------------------------------------------------------------------------- /res/scripts/input-display.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/scripts/input-display.lua -------------------------------------------------------------------------------- /res/sgb-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/sgb-border.png -------------------------------------------------------------------------------- /res/sgb-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/sgb-icon-128.png -------------------------------------------------------------------------------- /res/sgb-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/sgb-icon-16.png -------------------------------------------------------------------------------- /res/sgb-icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/sgb-icon-24.png -------------------------------------------------------------------------------- /res/sgb-icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/sgb-icon-256.png -------------------------------------------------------------------------------- /res/sgb-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/sgb-icon-32.png -------------------------------------------------------------------------------- /res/sgb-icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/sgb-icon-48.png -------------------------------------------------------------------------------- /res/sgb-icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/sgb-icon-64.png -------------------------------------------------------------------------------- /res/sgb-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/sgb-icon.svg -------------------------------------------------------------------------------- /res/shaders/fish.shader/fish.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/shaders/fish.shader/fish.fs -------------------------------------------------------------------------------- /res/shaders/hq2x.shader/hq2x.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/shaders/hq2x.shader/hq2x.fs -------------------------------------------------------------------------------- /res/shaders/lcd.shader/lcd.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/shaders/lcd.shader/lcd.fs -------------------------------------------------------------------------------- /res/shaders/tv-mode.shader/tv.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/shaders/tv-mode.shader/tv.fs -------------------------------------------------------------------------------- /res/shaders/wiiu.shader/wiiu.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/res/shaders/wiiu.shader/wiiu.fs -------------------------------------------------------------------------------- /src/arm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/arm/CMakeLists.txt -------------------------------------------------------------------------------- /src/arm/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/arm/arm.c -------------------------------------------------------------------------------- /src/arm/debugger/cli-debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/arm/debugger/cli-debugger.c -------------------------------------------------------------------------------- /src/arm/debugger/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/arm/debugger/debugger.c -------------------------------------------------------------------------------- /src/arm/decoder-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/arm/decoder-arm.c -------------------------------------------------------------------------------- /src/arm/decoder-thumb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/arm/decoder-thumb.c -------------------------------------------------------------------------------- /src/arm/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/arm/decoder.c -------------------------------------------------------------------------------- /src/arm/isa-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/arm/isa-arm.c -------------------------------------------------------------------------------- /src/arm/isa-thumb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/arm/isa-thumb.c -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/bitmap-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/bitmap-cache.c -------------------------------------------------------------------------------- /src/core/cache-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/cache-set.c -------------------------------------------------------------------------------- /src/core/cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/cheats.c -------------------------------------------------------------------------------- /src/core/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/config.c -------------------------------------------------------------------------------- /src/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/core.c -------------------------------------------------------------------------------- /src/core/directories.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/directories.c -------------------------------------------------------------------------------- /src/core/flags.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/flags.h.in -------------------------------------------------------------------------------- /src/core/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/input.c -------------------------------------------------------------------------------- /src/core/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/interface.c -------------------------------------------------------------------------------- /src/core/library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/library.c -------------------------------------------------------------------------------- /src/core/lockstep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/lockstep.c -------------------------------------------------------------------------------- /src/core/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/log.c -------------------------------------------------------------------------------- /src/core/map-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/map-cache.c -------------------------------------------------------------------------------- /src/core/mem-search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/mem-search.c -------------------------------------------------------------------------------- /src/core/rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/rewind.c -------------------------------------------------------------------------------- /src/core/scripting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/scripting.c -------------------------------------------------------------------------------- /src/core/serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/serialize.c -------------------------------------------------------------------------------- /src/core/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/sync.c -------------------------------------------------------------------------------- /src/core/test/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/test/core.c -------------------------------------------------------------------------------- /src/core/test/scripting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/test/scripting.c -------------------------------------------------------------------------------- /src/core/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/thread.c -------------------------------------------------------------------------------- /src/core/tile-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/tile-cache.c -------------------------------------------------------------------------------- /src/core/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/timing.c -------------------------------------------------------------------------------- /src/core/version.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/core/version.c.in -------------------------------------------------------------------------------- /src/debugger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/debugger/CMakeLists.txt -------------------------------------------------------------------------------- /src/debugger/access-logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/debugger/access-logger.c -------------------------------------------------------------------------------- /src/debugger/cli-debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/debugger/cli-debugger.c -------------------------------------------------------------------------------- /src/debugger/cli-el-backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/debugger/cli-el-backend.c -------------------------------------------------------------------------------- /src/debugger/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/debugger/debugger.c -------------------------------------------------------------------------------- /src/debugger/gdb-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/debugger/gdb-stub.c -------------------------------------------------------------------------------- /src/debugger/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/debugger/parser.c -------------------------------------------------------------------------------- /src/debugger/stack-trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/debugger/stack-trace.c -------------------------------------------------------------------------------- /src/debugger/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/debugger/symbols.c -------------------------------------------------------------------------------- /src/debugger/test/lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/debugger/test/lexer.c -------------------------------------------------------------------------------- /src/debugger/test/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/debugger/test/parser.c -------------------------------------------------------------------------------- /src/feature/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/CMakeLists.txt -------------------------------------------------------------------------------- /src/feature/commandline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/commandline.c -------------------------------------------------------------------------------- /src/feature/gui/cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/gui/cheats.c -------------------------------------------------------------------------------- /src/feature/gui/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/gui/cheats.h -------------------------------------------------------------------------------- /src/feature/gui/gui-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/gui/gui-config.c -------------------------------------------------------------------------------- /src/feature/gui/gui-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/gui/gui-config.h -------------------------------------------------------------------------------- /src/feature/gui/gui-runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/gui/gui-runner.c -------------------------------------------------------------------------------- /src/feature/gui/gui-runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/gui/gui-runner.h -------------------------------------------------------------------------------- /src/feature/gui/remap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/gui/remap.c -------------------------------------------------------------------------------- /src/feature/gui/remap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/gui/remap.h -------------------------------------------------------------------------------- /src/feature/proxy-backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/proxy-backend.c -------------------------------------------------------------------------------- /src/feature/sqlite3/no-intro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/sqlite3/no-intro.c -------------------------------------------------------------------------------- /src/feature/sqlite3/no-intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/sqlite3/no-intro.h -------------------------------------------------------------------------------- /src/feature/thread-proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/thread-proxy.c -------------------------------------------------------------------------------- /src/feature/updater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/updater.c -------------------------------------------------------------------------------- /src/feature/video-backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/video-backend.c -------------------------------------------------------------------------------- /src/feature/video-logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/feature/video-logger.c -------------------------------------------------------------------------------- /src/gb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/CMakeLists.txt -------------------------------------------------------------------------------- /src/gb/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/audio.c -------------------------------------------------------------------------------- /src/gb/cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/cheats.c -------------------------------------------------------------------------------- /src/gb/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/core.c -------------------------------------------------------------------------------- /src/gb/debugger/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/debugger/cli.c -------------------------------------------------------------------------------- /src/gb/debugger/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/debugger/debugger.c -------------------------------------------------------------------------------- /src/gb/debugger/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/debugger/symbols.c -------------------------------------------------------------------------------- /src/gb/extra/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/extra/proxy.c -------------------------------------------------------------------------------- /src/gb/gb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/gb.c -------------------------------------------------------------------------------- /src/gb/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/input.c -------------------------------------------------------------------------------- /src/gb/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/io.c -------------------------------------------------------------------------------- /src/gb/mbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/mbc.c -------------------------------------------------------------------------------- /src/gb/mbc/huc-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/mbc/huc-3.c -------------------------------------------------------------------------------- /src/gb/mbc/licensed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/mbc/licensed.c -------------------------------------------------------------------------------- /src/gb/mbc/mbc-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/mbc/mbc-private.h -------------------------------------------------------------------------------- /src/gb/mbc/mbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/mbc/mbc.c -------------------------------------------------------------------------------- /src/gb/mbc/pocket-cam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/mbc/pocket-cam.c -------------------------------------------------------------------------------- /src/gb/mbc/tama5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/mbc/tama5.c -------------------------------------------------------------------------------- /src/gb/mbc/unlicensed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/mbc/unlicensed.c -------------------------------------------------------------------------------- /src/gb/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/memory.c -------------------------------------------------------------------------------- /src/gb/overrides.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/overrides.c -------------------------------------------------------------------------------- /src/gb/renderers/cache-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/renderers/cache-set.c -------------------------------------------------------------------------------- /src/gb/renderers/software.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/renderers/software.c -------------------------------------------------------------------------------- /src/gb/serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/serialize.c -------------------------------------------------------------------------------- /src/gb/sio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/sio.c -------------------------------------------------------------------------------- /src/gb/sio/lockstep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/sio/lockstep.c -------------------------------------------------------------------------------- /src/gb/sio/printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/sio/printer.c -------------------------------------------------------------------------------- /src/gb/test/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/test/core.c -------------------------------------------------------------------------------- /src/gb/test/gbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/test/gbx.c -------------------------------------------------------------------------------- /src/gb/test/mbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/test/mbc.c -------------------------------------------------------------------------------- /src/gb/test/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/test/memory.c -------------------------------------------------------------------------------- /src/gb/test/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/test/rtc.c -------------------------------------------------------------------------------- /src/gb/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/timer.c -------------------------------------------------------------------------------- /src/gb/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gb/video.c -------------------------------------------------------------------------------- /src/gba/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/CMakeLists.txt -------------------------------------------------------------------------------- /src/gba/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/audio.c -------------------------------------------------------------------------------- /src/gba/bios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/bios.c -------------------------------------------------------------------------------- /src/gba/cart/ereader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/cart/ereader.c -------------------------------------------------------------------------------- /src/gba/cart/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/cart/gpio.c -------------------------------------------------------------------------------- /src/gba/cart/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/cart/matrix.c -------------------------------------------------------------------------------- /src/gba/cart/unlicensed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/cart/unlicensed.c -------------------------------------------------------------------------------- /src/gba/cart/vfame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/cart/vfame.c -------------------------------------------------------------------------------- /src/gba/cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/cheats.c -------------------------------------------------------------------------------- /src/gba/cheats/codebreaker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/cheats/codebreaker.c -------------------------------------------------------------------------------- /src/gba/cheats/gameshark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/cheats/gameshark.c -------------------------------------------------------------------------------- /src/gba/cheats/gameshark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/cheats/gameshark.h -------------------------------------------------------------------------------- /src/gba/cheats/parv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/cheats/parv3.c -------------------------------------------------------------------------------- /src/gba/cheats/parv3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/cheats/parv3.h -------------------------------------------------------------------------------- /src/gba/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/core.c -------------------------------------------------------------------------------- /src/gba/debugger/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/debugger/cli.c -------------------------------------------------------------------------------- /src/gba/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/dma.c -------------------------------------------------------------------------------- /src/gba/extra/battlechip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/extra/battlechip.c -------------------------------------------------------------------------------- /src/gba/extra/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/extra/proxy.c -------------------------------------------------------------------------------- /src/gba/gba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/gba.c -------------------------------------------------------------------------------- /src/gba/hle-bios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/hle-bios.c -------------------------------------------------------------------------------- /src/gba/hle-bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/hle-bios.h -------------------------------------------------------------------------------- /src/gba/hle-bios.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/hle-bios.make -------------------------------------------------------------------------------- /src/gba/hle-bios.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/hle-bios.s -------------------------------------------------------------------------------- /src/gba/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/input.c -------------------------------------------------------------------------------- /src/gba/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/io.c -------------------------------------------------------------------------------- /src/gba/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/memory.c -------------------------------------------------------------------------------- /src/gba/overrides.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/overrides.c -------------------------------------------------------------------------------- /src/gba/renderers/cache-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/renderers/cache-set.c -------------------------------------------------------------------------------- /src/gba/renderers/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/renderers/common.c -------------------------------------------------------------------------------- /src/gba/renderers/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/renderers/gl.c -------------------------------------------------------------------------------- /src/gba/renderers/software-bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/renderers/software-bg.c -------------------------------------------------------------------------------- /src/gba/renderers/software-obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/renderers/software-obj.c -------------------------------------------------------------------------------- /src/gba/savedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/savedata.c -------------------------------------------------------------------------------- /src/gba/serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/serialize.c -------------------------------------------------------------------------------- /src/gba/sharkport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/sharkport.c -------------------------------------------------------------------------------- /src/gba/sio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/sio.c -------------------------------------------------------------------------------- /src/gba/sio/dolphin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/sio/dolphin.c -------------------------------------------------------------------------------- /src/gba/sio/gbp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/sio/gbp.c -------------------------------------------------------------------------------- /src/gba/sio/lockstep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/sio/lockstep.c -------------------------------------------------------------------------------- /src/gba/test/cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/test/cheats.c -------------------------------------------------------------------------------- /src/gba/test/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/test/core.c -------------------------------------------------------------------------------- /src/gba/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/timer.c -------------------------------------------------------------------------------- /src/gba/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/gba/video.c -------------------------------------------------------------------------------- /src/platform/3ds/3ds-vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/3ds/3ds-vfs.c -------------------------------------------------------------------------------- /src/platform/3ds/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/3ds/CMakeLists.txt -------------------------------------------------------------------------------- /src/platform/3ds/banner.cgfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/3ds/banner.cgfx -------------------------------------------------------------------------------- /src/platform/3ds/bios.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/3ds/bios.wav -------------------------------------------------------------------------------- /src/platform/3ds/cia.rsf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/3ds/cia.rsf.in -------------------------------------------------------------------------------- /src/platform/3ds/ctr-gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/3ds/ctr-gpu.c -------------------------------------------------------------------------------- /src/platform/3ds/ctr-gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/3ds/ctr-gpu.h -------------------------------------------------------------------------------- /src/platform/3ds/ctru-heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/3ds/ctru-heap.c -------------------------------------------------------------------------------- /src/platform/3ds/gui-font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/3ds/gui-font.c -------------------------------------------------------------------------------- /src/platform/3ds/hbl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/3ds/hbl.xml -------------------------------------------------------------------------------- /src/platform/3ds/icons.t3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/3ds/icons.t3x -------------------------------------------------------------------------------- /src/platform/3ds/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/3ds/main.c -------------------------------------------------------------------------------- /src/platform/3ds/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/3ds/socket.c -------------------------------------------------------------------------------- /src/platform/3ds/uishader.g.pica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/3ds/uishader.g.pica -------------------------------------------------------------------------------- /src/platform/3ds/uishader.v.pica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/3ds/uishader.v.pica -------------------------------------------------------------------------------- /src/platform/headless-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/headless-main.c -------------------------------------------------------------------------------- /src/platform/libretro/libretro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/libretro/libretro.c -------------------------------------------------------------------------------- /src/platform/libretro/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/libretro/libretro.h -------------------------------------------------------------------------------- /src/platform/opengl/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/opengl/gl.c -------------------------------------------------------------------------------- /src/platform/opengl/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/opengl/gl.h -------------------------------------------------------------------------------- /src/platform/opengl/gles2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/opengl/gles2.c -------------------------------------------------------------------------------- /src/platform/opengl/gles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/opengl/gles2.h -------------------------------------------------------------------------------- /src/platform/posix/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/posix/memory.c -------------------------------------------------------------------------------- /src/platform/psp2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/psp2/CMakeLists.txt -------------------------------------------------------------------------------- /src/platform/psp2/backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/psp2/backdrop.png -------------------------------------------------------------------------------- /src/platform/psp2/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/psp2/bg.png -------------------------------------------------------------------------------- /src/platform/psp2/gui-font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/psp2/gui-font.c -------------------------------------------------------------------------------- /src/platform/psp2/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/psp2/icon0.png -------------------------------------------------------------------------------- /src/platform/psp2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/psp2/main.c -------------------------------------------------------------------------------- /src/platform/psp2/perf-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/psp2/perf-start.sh -------------------------------------------------------------------------------- /src/platform/psp2/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/psp2/perf.c -------------------------------------------------------------------------------- /src/platform/psp2/pic0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/psp2/pic0.png -------------------------------------------------------------------------------- /src/platform/psp2/psp2-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/psp2/psp2-common.h -------------------------------------------------------------------------------- /src/platform/psp2/psp2-context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/psp2/psp2-context.c -------------------------------------------------------------------------------- /src/platform/psp2/psp2-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/psp2/psp2-context.h -------------------------------------------------------------------------------- /src/platform/psp2/psp2-memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/psp2/psp2-memory.c -------------------------------------------------------------------------------- /src/platform/psp2/sce-vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/psp2/sce-vfs.c -------------------------------------------------------------------------------- /src/platform/psp2/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/psp2/startup.png -------------------------------------------------------------------------------- /src/platform/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/.gitignore -------------------------------------------------------------------------------- /src/platform/python/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/.pylintrc -------------------------------------------------------------------------------- /src/platform/python/_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/_builder.h -------------------------------------------------------------------------------- /src/platform/python/_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/_builder.py -------------------------------------------------------------------------------- /src/platform/python/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/conftest.py -------------------------------------------------------------------------------- /src/platform/python/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/core.c -------------------------------------------------------------------------------- /src/platform/python/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/core.h -------------------------------------------------------------------------------- /src/platform/python/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/engine.c -------------------------------------------------------------------------------- /src/platform/python/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/engine.h -------------------------------------------------------------------------------- /src/platform/python/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/lib.h -------------------------------------------------------------------------------- /src/platform/python/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/log.c -------------------------------------------------------------------------------- /src/platform/python/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/log.h -------------------------------------------------------------------------------- /src/platform/python/mgba/arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/mgba/arm.py -------------------------------------------------------------------------------- /src/platform/python/mgba/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/mgba/core.py -------------------------------------------------------------------------------- /src/platform/python/mgba/gb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/mgba/gb.py -------------------------------------------------------------------------------- /src/platform/python/mgba/gba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/mgba/gba.py -------------------------------------------------------------------------------- /src/platform/python/mgba/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/mgba/log.py -------------------------------------------------------------------------------- /src/platform/python/mgba/png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/mgba/png.py -------------------------------------------------------------------------------- /src/platform/python/mgba/sm83.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/mgba/sm83.py -------------------------------------------------------------------------------- /src/platform/python/mgba/tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/mgba/tile.py -------------------------------------------------------------------------------- /src/platform/python/mgba/vfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/mgba/vfs.py -------------------------------------------------------------------------------- /src/platform/python/pycommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/pycommon.h -------------------------------------------------------------------------------- /src/platform/python/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/setup.cfg -------------------------------------------------------------------------------- /src/platform/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/setup.py -------------------------------------------------------------------------------- /src/platform/python/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/platform/python/tests/mgba/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/platform/python/vfs-py.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/vfs-py.c -------------------------------------------------------------------------------- /src/platform/python/vfs-py.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/python/vfs-py.h -------------------------------------------------------------------------------- /src/platform/qt/AboutScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/AboutScreen.cpp -------------------------------------------------------------------------------- /src/platform/qt/AboutScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/AboutScreen.h -------------------------------------------------------------------------------- /src/platform/qt/AboutScreen.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/AboutScreen.ui -------------------------------------------------------------------------------- /src/platform/qt/Action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/Action.cpp -------------------------------------------------------------------------------- /src/platform/qt/Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/Action.h -------------------------------------------------------------------------------- /src/platform/qt/ActionMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ActionMapper.cpp -------------------------------------------------------------------------------- /src/platform/qt/ActionMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ActionMapper.h -------------------------------------------------------------------------------- /src/platform/qt/AssetInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/AssetInfo.cpp -------------------------------------------------------------------------------- /src/platform/qt/AssetInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/AssetInfo.h -------------------------------------------------------------------------------- /src/platform/qt/AssetTile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/AssetTile.cpp -------------------------------------------------------------------------------- /src/platform/qt/AssetTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/AssetTile.h -------------------------------------------------------------------------------- /src/platform/qt/AssetTile.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/AssetTile.ui -------------------------------------------------------------------------------- /src/platform/qt/AssetView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/AssetView.cpp -------------------------------------------------------------------------------- /src/platform/qt/AssetView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/AssetView.h -------------------------------------------------------------------------------- /src/platform/qt/AudioDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/AudioDevice.cpp -------------------------------------------------------------------------------- /src/platform/qt/AudioDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/AudioDevice.h -------------------------------------------------------------------------------- /src/platform/qt/AudioProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/AudioProcessor.h -------------------------------------------------------------------------------- /src/platform/qt/BattleChipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/BattleChipView.h -------------------------------------------------------------------------------- /src/platform/qt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/CMakeLists.txt -------------------------------------------------------------------------------- /src/platform/qt/CheatsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/CheatsModel.cpp -------------------------------------------------------------------------------- /src/platform/qt/CheatsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/CheatsModel.h -------------------------------------------------------------------------------- /src/platform/qt/CheatsView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/CheatsView.cpp -------------------------------------------------------------------------------- /src/platform/qt/CheatsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/CheatsView.h -------------------------------------------------------------------------------- /src/platform/qt/CheatsView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/CheatsView.ui -------------------------------------------------------------------------------- /src/platform/qt/ColorPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ColorPicker.cpp -------------------------------------------------------------------------------- /src/platform/qt/ColorPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ColorPicker.h -------------------------------------------------------------------------------- /src/platform/qt/CoreController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/CoreController.h -------------------------------------------------------------------------------- /src/platform/qt/CoreManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/CoreManager.cpp -------------------------------------------------------------------------------- /src/platform/qt/CoreManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/CoreManager.h -------------------------------------------------------------------------------- /src/platform/qt/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/Display.cpp -------------------------------------------------------------------------------- /src/platform/qt/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/Display.h -------------------------------------------------------------------------------- /src/platform/qt/DisplayGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/DisplayGL.cpp -------------------------------------------------------------------------------- /src/platform/qt/DisplayGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/DisplayGL.h -------------------------------------------------------------------------------- /src/platform/qt/DisplayQt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/DisplayQt.cpp -------------------------------------------------------------------------------- /src/platform/qt/DisplayQt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/DisplayQt.h -------------------------------------------------------------------------------- /src/platform/qt/ForwarderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ForwarderView.h -------------------------------------------------------------------------------- /src/platform/qt/ForwarderView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ForwarderView.ui -------------------------------------------------------------------------------- /src/platform/qt/FrameView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/FrameView.cpp -------------------------------------------------------------------------------- /src/platform/qt/FrameView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/FrameView.h -------------------------------------------------------------------------------- /src/platform/qt/FrameView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/FrameView.ui -------------------------------------------------------------------------------- /src/platform/qt/GBAApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GBAApp.cpp -------------------------------------------------------------------------------- /src/platform/qt/GBAApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GBAApp.h -------------------------------------------------------------------------------- /src/platform/qt/GBAKeyEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GBAKeyEditor.cpp -------------------------------------------------------------------------------- /src/platform/qt/GBAKeyEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GBAKeyEditor.h -------------------------------------------------------------------------------- /src/platform/qt/GBAOverride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GBAOverride.cpp -------------------------------------------------------------------------------- /src/platform/qt/GBAOverride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GBAOverride.h -------------------------------------------------------------------------------- /src/platform/qt/GBOverride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GBOverride.cpp -------------------------------------------------------------------------------- /src/platform/qt/GBOverride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GBOverride.h -------------------------------------------------------------------------------- /src/platform/qt/GDBController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GDBController.h -------------------------------------------------------------------------------- /src/platform/qt/GDBWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GDBWindow.cpp -------------------------------------------------------------------------------- /src/platform/qt/GDBWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GDBWindow.h -------------------------------------------------------------------------------- /src/platform/qt/GIFView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GIFView.cpp -------------------------------------------------------------------------------- /src/platform/qt/GIFView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GIFView.h -------------------------------------------------------------------------------- /src/platform/qt/GIFView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GIFView.ui -------------------------------------------------------------------------------- /src/platform/qt/GameBoy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GameBoy.cpp -------------------------------------------------------------------------------- /src/platform/qt/GameBoy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/GameBoy.h -------------------------------------------------------------------------------- /src/platform/qt/IOViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/IOViewer.cpp -------------------------------------------------------------------------------- /src/platform/qt/IOViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/IOViewer.h -------------------------------------------------------------------------------- /src/platform/qt/IOViewer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/IOViewer.ui -------------------------------------------------------------------------------- /src/platform/qt/InputProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/InputProfile.cpp -------------------------------------------------------------------------------- /src/platform/qt/InputProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/InputProfile.h -------------------------------------------------------------------------------- /src/platform/qt/KeyEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/KeyEditor.cpp -------------------------------------------------------------------------------- /src/platform/qt/KeyEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/KeyEditor.h -------------------------------------------------------------------------------- /src/platform/qt/LoadSaveState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/LoadSaveState.h -------------------------------------------------------------------------------- /src/platform/qt/LoadSaveState.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/LoadSaveState.ui -------------------------------------------------------------------------------- /src/platform/qt/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/Log.cpp -------------------------------------------------------------------------------- /src/platform/qt/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/Log.h -------------------------------------------------------------------------------- /src/platform/qt/LogConfigModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/LogConfigModel.h -------------------------------------------------------------------------------- /src/platform/qt/LogController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/LogController.h -------------------------------------------------------------------------------- /src/platform/qt/LogView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/LogView.cpp -------------------------------------------------------------------------------- /src/platform/qt/LogView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/LogView.h -------------------------------------------------------------------------------- /src/platform/qt/LogView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/LogView.ui -------------------------------------------------------------------------------- /src/platform/qt/LogWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/LogWidget.cpp -------------------------------------------------------------------------------- /src/platform/qt/LogWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/LogWidget.h -------------------------------------------------------------------------------- /src/platform/qt/MapView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/MapView.cpp -------------------------------------------------------------------------------- /src/platform/qt/MapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/MapView.h -------------------------------------------------------------------------------- /src/platform/qt/MapView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/MapView.ui -------------------------------------------------------------------------------- /src/platform/qt/MemoryDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/MemoryDump.cpp -------------------------------------------------------------------------------- /src/platform/qt/MemoryDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/MemoryDump.h -------------------------------------------------------------------------------- /src/platform/qt/MemoryDump.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/MemoryDump.ui -------------------------------------------------------------------------------- /src/platform/qt/MemoryModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/MemoryModel.cpp -------------------------------------------------------------------------------- /src/platform/qt/MemoryModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/MemoryModel.h -------------------------------------------------------------------------------- /src/platform/qt/MemorySearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/MemorySearch.cpp -------------------------------------------------------------------------------- /src/platform/qt/MemorySearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/MemorySearch.h -------------------------------------------------------------------------------- /src/platform/qt/MemorySearch.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/MemorySearch.ui -------------------------------------------------------------------------------- /src/platform/qt/MemoryView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/MemoryView.cpp -------------------------------------------------------------------------------- /src/platform/qt/MemoryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/MemoryView.h -------------------------------------------------------------------------------- /src/platform/qt/MemoryView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/MemoryView.ui -------------------------------------------------------------------------------- /src/platform/qt/MessagePainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/MessagePainter.h -------------------------------------------------------------------------------- /src/platform/qt/ObjView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ObjView.cpp -------------------------------------------------------------------------------- /src/platform/qt/ObjView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ObjView.h -------------------------------------------------------------------------------- /src/platform/qt/ObjView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ObjView.ui -------------------------------------------------------------------------------- /src/platform/qt/OpenGLBug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/OpenGLBug.cpp -------------------------------------------------------------------------------- /src/platform/qt/OpenGLBug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/OpenGLBug.h -------------------------------------------------------------------------------- /src/platform/qt/Override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/Override.h -------------------------------------------------------------------------------- /src/platform/qt/OverrideView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/OverrideView.cpp -------------------------------------------------------------------------------- /src/platform/qt/OverrideView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/OverrideView.h -------------------------------------------------------------------------------- /src/platform/qt/OverrideView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/OverrideView.ui -------------------------------------------------------------------------------- /src/platform/qt/PaletteView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/PaletteView.cpp -------------------------------------------------------------------------------- /src/platform/qt/PaletteView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/PaletteView.h -------------------------------------------------------------------------------- /src/platform/qt/PaletteView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/PaletteView.ui -------------------------------------------------------------------------------- /src/platform/qt/PrinterView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/PrinterView.cpp -------------------------------------------------------------------------------- /src/platform/qt/PrinterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/PrinterView.h -------------------------------------------------------------------------------- /src/platform/qt/PrinterView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/PrinterView.ui -------------------------------------------------------------------------------- /src/platform/qt/ROMInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ROMInfo.cpp -------------------------------------------------------------------------------- /src/platform/qt/ROMInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ROMInfo.h -------------------------------------------------------------------------------- /src/platform/qt/ROMInfo.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ROMInfo.ui -------------------------------------------------------------------------------- /src/platform/qt/RegisterView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/RegisterView.cpp -------------------------------------------------------------------------------- /src/platform/qt/RegisterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/RegisterView.h -------------------------------------------------------------------------------- /src/platform/qt/ReportView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ReportView.cpp -------------------------------------------------------------------------------- /src/platform/qt/ReportView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ReportView.h -------------------------------------------------------------------------------- /src/platform/qt/ReportView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ReportView.ui -------------------------------------------------------------------------------- /src/platform/qt/SaveConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/SaveConverter.h -------------------------------------------------------------------------------- /src/platform/qt/SaveConverter.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/SaveConverter.ui -------------------------------------------------------------------------------- /src/platform/qt/SensorView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/SensorView.cpp -------------------------------------------------------------------------------- /src/platform/qt/SensorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/SensorView.h -------------------------------------------------------------------------------- /src/platform/qt/SensorView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/SensorView.ui -------------------------------------------------------------------------------- /src/platform/qt/SettingsView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/SettingsView.cpp -------------------------------------------------------------------------------- /src/platform/qt/SettingsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/SettingsView.h -------------------------------------------------------------------------------- /src/platform/qt/SettingsView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/SettingsView.ui -------------------------------------------------------------------------------- /src/platform/qt/ShaderSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ShaderSelector.h -------------------------------------------------------------------------------- /src/platform/qt/ShortcutModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ShortcutModel.h -------------------------------------------------------------------------------- /src/platform/qt/ShortcutView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ShortcutView.cpp -------------------------------------------------------------------------------- /src/platform/qt/ShortcutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ShortcutView.h -------------------------------------------------------------------------------- /src/platform/qt/ShortcutView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ShortcutView.ui -------------------------------------------------------------------------------- /src/platform/qt/Swatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/Swatch.cpp -------------------------------------------------------------------------------- /src/platform/qt/Swatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/Swatch.h -------------------------------------------------------------------------------- /src/platform/qt/TilePainter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/TilePainter.cpp -------------------------------------------------------------------------------- /src/platform/qt/TilePainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/TilePainter.h -------------------------------------------------------------------------------- /src/platform/qt/TileView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/TileView.cpp -------------------------------------------------------------------------------- /src/platform/qt/TileView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/TileView.h -------------------------------------------------------------------------------- /src/platform/qt/TileView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/TileView.ui -------------------------------------------------------------------------------- /src/platform/qt/VFileDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/VFileDevice.cpp -------------------------------------------------------------------------------- /src/platform/qt/VFileDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/VFileDevice.h -------------------------------------------------------------------------------- /src/platform/qt/VideoDumper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/VideoDumper.cpp -------------------------------------------------------------------------------- /src/platform/qt/VideoDumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/VideoDumper.h -------------------------------------------------------------------------------- /src/platform/qt/VideoProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/VideoProxy.cpp -------------------------------------------------------------------------------- /src/platform/qt/VideoProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/VideoProxy.h -------------------------------------------------------------------------------- /src/platform/qt/VideoView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/VideoView.cpp -------------------------------------------------------------------------------- /src/platform/qt/VideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/VideoView.h -------------------------------------------------------------------------------- /src/platform/qt/VideoView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/VideoView.ui -------------------------------------------------------------------------------- /src/platform/qt/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/Window.cpp -------------------------------------------------------------------------------- /src/platform/qt/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/Window.h -------------------------------------------------------------------------------- /src/platform/qt/input/Gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/input/Gamepad.h -------------------------------------------------------------------------------- /src/platform/qt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/main.cpp -------------------------------------------------------------------------------- /src/platform/qt/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/resources.qrc -------------------------------------------------------------------------------- /src/platform/qt/test/library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/test/library.cpp -------------------------------------------------------------------------------- /src/platform/qt/test/spanset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/test/spanset.cpp -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-de.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-en.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-es.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-fr.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-hu.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-it.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-ja.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-ko.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-ms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-ms.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-nb_NO.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-pl.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-pt_BR.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-pt_PT.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-ru.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-sv.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-ta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-ta.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-tr.ts -------------------------------------------------------------------------------- /src/platform/qt/ts/mgba-zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/ts/mgba-zh_CN.ts -------------------------------------------------------------------------------- /src/platform/qt/updater.qrc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/updater.qrc.in -------------------------------------------------------------------------------- /src/platform/qt/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/utils.cpp -------------------------------------------------------------------------------- /src/platform/qt/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/qt/utils.h -------------------------------------------------------------------------------- /src/platform/sdl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/sdl/CMakeLists.txt -------------------------------------------------------------------------------- /src/platform/sdl/gl-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/sdl/gl-common.c -------------------------------------------------------------------------------- /src/platform/sdl/gl-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/sdl/gl-common.h -------------------------------------------------------------------------------- /src/platform/sdl/gl-sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/sdl/gl-sdl.c -------------------------------------------------------------------------------- /src/platform/sdl/gles2-sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/sdl/gles2-sdl.c -------------------------------------------------------------------------------- /src/platform/sdl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/sdl/main.c -------------------------------------------------------------------------------- /src/platform/sdl/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/sdl/main.h -------------------------------------------------------------------------------- /src/platform/sdl/sdl-audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/sdl/sdl-audio.c -------------------------------------------------------------------------------- /src/platform/sdl/sdl-audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/sdl/sdl-audio.h -------------------------------------------------------------------------------- /src/platform/sdl/sdl-events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/sdl/sdl-events.c -------------------------------------------------------------------------------- /src/platform/sdl/sdl-events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/sdl/sdl-events.h -------------------------------------------------------------------------------- /src/platform/sdl/sw-sdl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/sdl/sw-sdl1.c -------------------------------------------------------------------------------- /src/platform/sdl/sw-sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/sdl/sw-sdl2.c -------------------------------------------------------------------------------- /src/platform/switch/gui-font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/switch/gui-font.c -------------------------------------------------------------------------------- /src/platform/switch/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/switch/icon.jpg -------------------------------------------------------------------------------- /src/platform/switch/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/switch/main.c -------------------------------------------------------------------------------- /src/platform/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/platform/test/cinema-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/test/cinema-main.c -------------------------------------------------------------------------------- /src/platform/test/fuzz-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/test/fuzz-main.c -------------------------------------------------------------------------------- /src/platform/test/perf-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/test/perf-main.c -------------------------------------------------------------------------------- /src/platform/wii/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/wii/CMakeLists.txt -------------------------------------------------------------------------------- /src/platform/wii/gui-font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/wii/gui-font.c -------------------------------------------------------------------------------- /src/platform/wii/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/wii/icon.png -------------------------------------------------------------------------------- /src/platform/wii/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/wii/main.c -------------------------------------------------------------------------------- /src/platform/wii/meta.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/wii/meta.xml.in -------------------------------------------------------------------------------- /src/platform/windows/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/windows/memory.c -------------------------------------------------------------------------------- /src/platform/windows/vfs-w32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/platform/windows/vfs-w32.c -------------------------------------------------------------------------------- /src/script/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/CMakeLists.txt -------------------------------------------------------------------------------- /src/script/canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/canvas.c -------------------------------------------------------------------------------- /src/script/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/console.c -------------------------------------------------------------------------------- /src/script/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/context.c -------------------------------------------------------------------------------- /src/script/engines/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/engines/lua.c -------------------------------------------------------------------------------- /src/script/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/image.c -------------------------------------------------------------------------------- /src/script/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/input.c -------------------------------------------------------------------------------- /src/script/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/socket.c -------------------------------------------------------------------------------- /src/script/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/stdlib.c -------------------------------------------------------------------------------- /src/script/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/storage.c -------------------------------------------------------------------------------- /src/script/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/test.h -------------------------------------------------------------------------------- /src/script/test/classes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/test/classes.c -------------------------------------------------------------------------------- /src/script/test/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/test/context.c -------------------------------------------------------------------------------- /src/script/test/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/test/image.c -------------------------------------------------------------------------------- /src/script/test/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/test/input.c -------------------------------------------------------------------------------- /src/script/test/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/test/lua.c -------------------------------------------------------------------------------- /src/script/test/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/test/stdlib.c -------------------------------------------------------------------------------- /src/script/test/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/test/storage.c -------------------------------------------------------------------------------- /src/script/test/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/test/types.c -------------------------------------------------------------------------------- /src/script/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/script/types.c -------------------------------------------------------------------------------- /src/sm83/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/sm83/CMakeLists.txt -------------------------------------------------------------------------------- /src/sm83/debugger/cli-debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/sm83/debugger/cli-debugger.c -------------------------------------------------------------------------------- /src/sm83/debugger/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/sm83/debugger/debugger.c -------------------------------------------------------------------------------- /src/sm83/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/sm83/decoder.c -------------------------------------------------------------------------------- /src/sm83/isa-sm83.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/sm83/isa-sm83.c -------------------------------------------------------------------------------- /src/sm83/sm83.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/sm83/sm83.c -------------------------------------------------------------------------------- /src/third-party/inih/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/inih/LICENSE.txt -------------------------------------------------------------------------------- /src/third-party/inih/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/inih/README.md -------------------------------------------------------------------------------- /src/third-party/inih/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/inih/ini.c -------------------------------------------------------------------------------- /src/third-party/inih/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/inih/ini.h -------------------------------------------------------------------------------- /src/third-party/libpng/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/ANNOUNCE -------------------------------------------------------------------------------- /src/third-party/libpng/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/AUTHORS -------------------------------------------------------------------------------- /src/third-party/libpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/CHANGES -------------------------------------------------------------------------------- /src/third-party/libpng/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/INSTALL -------------------------------------------------------------------------------- /src/third-party/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/LICENSE -------------------------------------------------------------------------------- /src/third-party/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/README -------------------------------------------------------------------------------- /src/third-party/libpng/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/TODO -------------------------------------------------------------------------------- /src/third-party/libpng/TRADEMARK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/TRADEMARK -------------------------------------------------------------------------------- /src/third-party/libpng/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/compile -------------------------------------------------------------------------------- /src/third-party/libpng/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/configure -------------------------------------------------------------------------------- /src/third-party/libpng/contrib/pngexif/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.py[co] 3 | *$py.class 4 | -------------------------------------------------------------------------------- /src/third-party/libpng/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/depcomp -------------------------------------------------------------------------------- /src/third-party/libpng/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/example.c -------------------------------------------------------------------------------- /src/third-party/libpng/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/libpng.3 -------------------------------------------------------------------------------- /src/third-party/libpng/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/ltmain.sh -------------------------------------------------------------------------------- /src/third-party/libpng/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/missing -------------------------------------------------------------------------------- /src/third-party/libpng/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/png.5 -------------------------------------------------------------------------------- /src/third-party/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/png.c -------------------------------------------------------------------------------- /src/third-party/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/png.h -------------------------------------------------------------------------------- /src/third-party/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/pngconf.h -------------------------------------------------------------------------------- /src/third-party/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/pngget.c -------------------------------------------------------------------------------- /src/third-party/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/pnginfo.h -------------------------------------------------------------------------------- /src/third-party/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/pngmem.c -------------------------------------------------------------------------------- /src/third-party/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/pngpriv.h -------------------------------------------------------------------------------- /src/third-party/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/pngread.c -------------------------------------------------------------------------------- /src/third-party/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/pngrio.c -------------------------------------------------------------------------------- /src/third-party/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/pngset.c -------------------------------------------------------------------------------- /src/third-party/libpng/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/pngtest.c -------------------------------------------------------------------------------- /src/third-party/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/libpng/pngwio.c -------------------------------------------------------------------------------- /src/third-party/libpng/projects/.editorconfig: -------------------------------------------------------------------------------- 1 | # https://editorconfig.org 2 | 3 | root = true 4 | -------------------------------------------------------------------------------- /src/third-party/libpng/tests/pngvalid-gamma-16-to-8: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-16-to-8 3 | -------------------------------------------------------------------------------- /src/third-party/libpng/tests/pngvalid-gamma-sbit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-sbit 3 | -------------------------------------------------------------------------------- /src/third-party/libpng/tests/pngvalid-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --transform 3 | -------------------------------------------------------------------------------- /src/third-party/lzma/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7z.h -------------------------------------------------------------------------------- /src/third-party/lzma/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7zAlloc.c -------------------------------------------------------------------------------- /src/third-party/lzma/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7zAlloc.h -------------------------------------------------------------------------------- /src/third-party/lzma/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7zArcIn.c -------------------------------------------------------------------------------- /src/third-party/lzma/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7zBuf.c -------------------------------------------------------------------------------- /src/third-party/lzma/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7zBuf.h -------------------------------------------------------------------------------- /src/third-party/lzma/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7zBuf2.c -------------------------------------------------------------------------------- /src/third-party/lzma/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7zCrc.c -------------------------------------------------------------------------------- /src/third-party/lzma/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7zCrc.h -------------------------------------------------------------------------------- /src/third-party/lzma/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7zCrcOpt.c -------------------------------------------------------------------------------- /src/third-party/lzma/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7zDec.c -------------------------------------------------------------------------------- /src/third-party/lzma/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7zFile.c -------------------------------------------------------------------------------- /src/third-party/lzma/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7zFile.h -------------------------------------------------------------------------------- /src/third-party/lzma/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7zStream.c -------------------------------------------------------------------------------- /src/third-party/lzma/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7zTypes.h -------------------------------------------------------------------------------- /src/third-party/lzma/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/7zVersion.h -------------------------------------------------------------------------------- /src/third-party/lzma/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Aes.c -------------------------------------------------------------------------------- /src/third-party/lzma/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Aes.h -------------------------------------------------------------------------------- /src/third-party/lzma/AesOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/AesOpt.c -------------------------------------------------------------------------------- /src/third-party/lzma/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Alloc.c -------------------------------------------------------------------------------- /src/third-party/lzma/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Alloc.h -------------------------------------------------------------------------------- /src/third-party/lzma/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Bcj2.c -------------------------------------------------------------------------------- /src/third-party/lzma/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Bcj2.h -------------------------------------------------------------------------------- /src/third-party/lzma/Bcj2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Bcj2Enc.c -------------------------------------------------------------------------------- /src/third-party/lzma/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Bra.c -------------------------------------------------------------------------------- /src/third-party/lzma/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Bra.h -------------------------------------------------------------------------------- /src/third-party/lzma/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Bra86.c -------------------------------------------------------------------------------- /src/third-party/lzma/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/BraIA64.c -------------------------------------------------------------------------------- /src/third-party/lzma/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Compiler.h -------------------------------------------------------------------------------- /src/third-party/lzma/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/CpuArch.c -------------------------------------------------------------------------------- /src/third-party/lzma/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/CpuArch.h -------------------------------------------------------------------------------- /src/third-party/lzma/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Delta.c -------------------------------------------------------------------------------- /src/third-party/lzma/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Delta.h -------------------------------------------------------------------------------- /src/third-party/lzma/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/LzFind.c -------------------------------------------------------------------------------- /src/third-party/lzma/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/LzFind.h -------------------------------------------------------------------------------- /src/third-party/lzma/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/LzHash.h -------------------------------------------------------------------------------- /src/third-party/lzma/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Lzma86.h -------------------------------------------------------------------------------- /src/third-party/lzma/MtDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/MtDec.c -------------------------------------------------------------------------------- /src/third-party/lzma/MtDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/MtDec.h -------------------------------------------------------------------------------- /src/third-party/lzma/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Ppmd.h -------------------------------------------------------------------------------- /src/third-party/lzma/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Ppmd7.c -------------------------------------------------------------------------------- /src/third-party/lzma/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Ppmd7.h -------------------------------------------------------------------------------- /src/third-party/lzma/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Sha256.c -------------------------------------------------------------------------------- /src/third-party/lzma/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Sha256.h -------------------------------------------------------------------------------- /src/third-party/lzma/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Sort.c -------------------------------------------------------------------------------- /src/third-party/lzma/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Sort.h -------------------------------------------------------------------------------- /src/third-party/lzma/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Xz.c -------------------------------------------------------------------------------- /src/third-party/lzma/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/Xz.h -------------------------------------------------------------------------------- /src/third-party/lzma/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/XzDec.c -------------------------------------------------------------------------------- /src/third-party/lzma/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/XzEnc.c -------------------------------------------------------------------------------- /src/third-party/lzma/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/XzEnc.h -------------------------------------------------------------------------------- /src/third-party/lzma/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/lzma/XzIn.c -------------------------------------------------------------------------------- /src/third-party/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/FAQ -------------------------------------------------------------------------------- /src/third-party/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/INDEX -------------------------------------------------------------------------------- /src/third-party/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/Makefile -------------------------------------------------------------------------------- /src/third-party/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/README -------------------------------------------------------------------------------- /src/third-party/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/crc32.c -------------------------------------------------------------------------------- /src/third-party/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/crc32.h -------------------------------------------------------------------------------- /src/third-party/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/gzguts.h -------------------------------------------------------------------------------- /src/third-party/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/gzlib.c -------------------------------------------------------------------------------- /src/third-party/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/gzread.c -------------------------------------------------------------------------------- /src/third-party/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/trees.c -------------------------------------------------------------------------------- /src/third-party/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/trees.h -------------------------------------------------------------------------------- /src/third-party/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/zconf.h -------------------------------------------------------------------------------- /src/third-party/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/zlib.3 -------------------------------------------------------------------------------- /src/third-party/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/zlib.h -------------------------------------------------------------------------------- /src/third-party/zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/zlib.map -------------------------------------------------------------------------------- /src/third-party/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/zutil.c -------------------------------------------------------------------------------- /src/third-party/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/third-party/zlib/zutil.h -------------------------------------------------------------------------------- /src/tools/docgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/tools/docgen.c -------------------------------------------------------------------------------- /src/tools/font-sdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/tools/font-sdf.c -------------------------------------------------------------------------------- /src/tools/updater-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/tools/updater-main.c -------------------------------------------------------------------------------- /src/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/CMakeLists.txt -------------------------------------------------------------------------------- /src/util/audio-buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/audio-buffer.c -------------------------------------------------------------------------------- /src/util/audio-resampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/audio-resampler.c -------------------------------------------------------------------------------- /src/util/circle-buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/circle-buffer.c -------------------------------------------------------------------------------- /src/util/configuration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/configuration.c -------------------------------------------------------------------------------- /src/util/convolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/convolve.c -------------------------------------------------------------------------------- /src/util/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/crc32.c -------------------------------------------------------------------------------- /src/util/elf-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/elf-read.c -------------------------------------------------------------------------------- /src/util/formatting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/formatting.c -------------------------------------------------------------------------------- /src/util/gbk-table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/gbk-table.c -------------------------------------------------------------------------------- /src/util/geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/geometry.c -------------------------------------------------------------------------------- /src/util/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/gui.c -------------------------------------------------------------------------------- /src/util/gui/file-select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/gui/file-select.c -------------------------------------------------------------------------------- /src/util/gui/font-metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/gui/font-metrics.c -------------------------------------------------------------------------------- /src/util/gui/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/gui/font.c -------------------------------------------------------------------------------- /src/util/gui/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/gui/menu.c -------------------------------------------------------------------------------- /src/util/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/hash.c -------------------------------------------------------------------------------- /src/util/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/image.c -------------------------------------------------------------------------------- /src/util/image/export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/image/export.c -------------------------------------------------------------------------------- /src/util/image/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/image/font.c -------------------------------------------------------------------------------- /src/util/image/png-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/image/png-io.c -------------------------------------------------------------------------------- /src/util/interpolator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/interpolator.c -------------------------------------------------------------------------------- /src/util/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/md5.c -------------------------------------------------------------------------------- /src/util/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/memory.c -------------------------------------------------------------------------------- /src/util/patch-fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/patch-fast.c -------------------------------------------------------------------------------- /src/util/patch-ips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/patch-ips.c -------------------------------------------------------------------------------- /src/util/patch-ups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/patch-ups.c -------------------------------------------------------------------------------- /src/util/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/patch.c -------------------------------------------------------------------------------- /src/util/ring-fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/ring-fifo.c -------------------------------------------------------------------------------- /src/util/sfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/sfo.c -------------------------------------------------------------------------------- /src/util/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/sha1.c -------------------------------------------------------------------------------- /src/util/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/string.c -------------------------------------------------------------------------------- /src/util/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/table.c -------------------------------------------------------------------------------- /src/util/test/circle-buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/test/circle-buffer.c -------------------------------------------------------------------------------- /src/util/test/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/test/color.c -------------------------------------------------------------------------------- /src/util/test/geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/test/geometry.c -------------------------------------------------------------------------------- /src/util/test/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/test/hash.c -------------------------------------------------------------------------------- /src/util/test/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/test/image.c -------------------------------------------------------------------------------- /src/util/test/sfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/test/sfo.c -------------------------------------------------------------------------------- /src/util/test/string-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/test/string-parser.c -------------------------------------------------------------------------------- /src/util/test/string-utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/test/string-utf8.c -------------------------------------------------------------------------------- /src/util/test/suite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/test/suite.h -------------------------------------------------------------------------------- /src/util/test/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/test/table.c -------------------------------------------------------------------------------- /src/util/test/text-codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/test/text-codec.c -------------------------------------------------------------------------------- /src/util/test/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/test/vfs.c -------------------------------------------------------------------------------- /src/util/text-codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/text-codec.c -------------------------------------------------------------------------------- /src/util/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/vector.c -------------------------------------------------------------------------------- /src/util/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/vfs.c -------------------------------------------------------------------------------- /src/util/vfs/vfs-devlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/vfs/vfs-devlist.c -------------------------------------------------------------------------------- /src/util/vfs/vfs-dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/vfs/vfs-dirent.c -------------------------------------------------------------------------------- /src/util/vfs/vfs-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/vfs/vfs-fd.c -------------------------------------------------------------------------------- /src/util/vfs/vfs-fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/vfs/vfs-fifo.c -------------------------------------------------------------------------------- /src/util/vfs/vfs-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/vfs/vfs-file.c -------------------------------------------------------------------------------- /src/util/vfs/vfs-lzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/vfs/vfs-lzma.c -------------------------------------------------------------------------------- /src/util/vfs/vfs-mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/vfs/vfs-mem.c -------------------------------------------------------------------------------- /src/util/vfs/vfs-zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/src/util/vfs/vfs-zip.c -------------------------------------------------------------------------------- /tools/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/tools/debian/changelog -------------------------------------------------------------------------------- /tools/debian/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/tools/debian/clean -------------------------------------------------------------------------------- /tools/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /tools/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/tools/debian/control -------------------------------------------------------------------------------- /tools/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/tools/debian/copyright -------------------------------------------------------------------------------- /tools/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | CHANGES 3 | -------------------------------------------------------------------------------- /tools/debian/mgba-qt.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/tools/debian/mgba-qt.install -------------------------------------------------------------------------------- /tools/debian/mgba-qt.manpages: -------------------------------------------------------------------------------- 1 | doc/mgba-qt.6 2 | -------------------------------------------------------------------------------- /tools/debian/mgba-sdl.install: -------------------------------------------------------------------------------- 1 | usr/bin/mgba 2 | -------------------------------------------------------------------------------- /tools/debian/mgba-sdl.manpages: -------------------------------------------------------------------------------- 1 | doc/mgba.6 2 | -------------------------------------------------------------------------------- /tools/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/tools/debian/rules -------------------------------------------------------------------------------- /tools/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /tools/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/tools/debian/watch -------------------------------------------------------------------------------- /tools/deploy-mac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/tools/deploy-mac.py -------------------------------------------------------------------------------- /tools/deploy-win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/tools/deploy-win.sh -------------------------------------------------------------------------------- /tools/dlls.gdb: -------------------------------------------------------------------------------- 1 | start 2 | info sharedlibrary 3 | q 4 | -------------------------------------------------------------------------------- /tools/make-dotcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/tools/make-dotcode.py -------------------------------------------------------------------------------- /tools/perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/tools/perf.py -------------------------------------------------------------------------------- /tools/sanitize-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/tools/sanitize-deb.sh -------------------------------------------------------------------------------- /tools/snes-tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/tools/snes-tile.py -------------------------------------------------------------------------------- /version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgba-emu/mgba/HEAD/version.cmake --------------------------------------------------------------------------------