├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── assets ├── sameboy-bootroms │ ├── agb_boot.bin │ ├── cgb_boot.bin │ ├── dmg_boot.bin │ ├── sgb2_boot.bin │ └── sgb_boot.bin └── tgbr.ico ├── src ├── apu.rs ├── bus.rs ├── config.rs ├── consts.rs ├── context.rs ├── cpu.rs ├── gameboy.rs ├── interface.rs ├── io.rs ├── lib.rs ├── mbc │ ├── mbc1.rs │ ├── mbc2.rs │ ├── mbc3.rs │ ├── mbc5.rs │ └── mod.rs ├── ppu.rs ├── rom.rs ├── serial.rs └── util.rs └── tests ├── blargg ├── cgb_sound │ ├── cgb_sound.gb │ ├── readme.txt │ ├── rom_singles │ │ ├── 01-registers.gb │ │ ├── 02-len ctr.gb │ │ ├── 03-trigger.gb │ │ ├── 04-sweep.gb │ │ ├── 05-sweep details.gb │ │ ├── 06-overflow on trigger.gb │ │ ├── 07-len sweep period sync.gb │ │ ├── 08-len ctr during power.gb │ │ ├── 09-wave read while on.gb │ │ ├── 10-wave trigger while on.gb │ │ ├── 11-regs after power.gb │ │ └── 12-wave.gb │ └── source │ │ ├── 01-registers.s │ │ ├── 02-len ctr.s │ │ ├── 03-trigger.s │ │ ├── 04-sweep.s │ │ ├── 05-sweep details.s │ │ ├── 06-overflow on trigger.s │ │ ├── 07-len sweep period sync.s │ │ ├── 08-len ctr during power.s │ │ ├── 09-wave read while on.s │ │ ├── 10-wave trigger while on.s │ │ ├── 11-regs after power.s │ │ ├── 12-wave.s │ │ ├── common │ │ ├── build_gbs.s │ │ ├── build_rom.s │ │ ├── console.bin │ │ ├── console.s │ │ ├── crc.s │ │ ├── delay.s │ │ ├── gb.inc │ │ ├── macros.inc │ │ ├── numbers.s │ │ ├── printing.s │ │ ├── shell.s │ │ └── testing.s │ │ ├── linkfile │ │ ├── readme.txt │ │ └── shell.inc ├── cpu_instrs │ ├── cpu_instrs.gb │ ├── individual │ │ ├── 01-special.gb │ │ ├── 02-interrupts.gb │ │ ├── 03-op sp,hl.gb │ │ ├── 04-op r,imm.gb │ │ ├── 05-op rp.gb │ │ ├── 06-ld r,r.gb │ │ ├── 07-jr,jp,call,ret,rst.gb │ │ ├── 08-misc instrs.gb │ │ ├── 09-op r,r.gb │ │ ├── 10-bit ops.gb │ │ └── 11-op a,(hl).gb │ ├── readme.txt │ └── source │ │ ├── 01-special.s │ │ ├── 02-interrupts.s │ │ ├── 03-op sp,hl.s │ │ ├── 04-op r,imm.s │ │ ├── 05-op rp.s │ │ ├── 06-ld r,r.s │ │ ├── 07-jr,jp,call,ret,rst.s │ │ ├── 08-misc instrs.s │ │ ├── 09-op r,r.s │ │ ├── 10-bit ops.s │ │ ├── 11-op a,(hl).s │ │ ├── common │ │ ├── apu.s │ │ ├── build_gbs.s │ │ ├── build_rom.s │ │ ├── checksums.s │ │ ├── console.bin │ │ ├── console.s │ │ ├── cpu_speed.s │ │ ├── crc.s │ │ ├── crc_fast.s │ │ ├── delay.s │ │ ├── gb.inc │ │ ├── instr_test.s │ │ ├── macros.inc │ │ ├── multi_custom.s │ │ ├── numbers.s │ │ ├── printing.s │ │ ├── runtime.s │ │ └── testing.s │ │ ├── linkfile │ │ └── shell.inc ├── dmg_sound │ ├── dmg_sound.gb │ ├── readme.txt │ ├── rom_singles │ │ ├── 01-registers.gb │ │ ├── 02-len ctr.gb │ │ ├── 03-trigger.gb │ │ ├── 04-sweep.gb │ │ ├── 05-sweep details.gb │ │ ├── 06-overflow on trigger.gb │ │ ├── 07-len sweep period sync.gb │ │ ├── 08-len ctr during power.gb │ │ ├── 09-wave read while on.gb │ │ ├── 10-wave trigger while on.gb │ │ ├── 11-regs after power.gb │ │ └── 12-wave write while on.gb │ └── source │ │ ├── 01-registers.s │ │ ├── 02-len ctr.s │ │ ├── 03-trigger.s │ │ ├── 04-sweep.s │ │ ├── 05-sweep details.s │ │ ├── 06-overflow on trigger.s │ │ ├── 07-len sweep period sync.s │ │ ├── 08-len ctr during power.s │ │ ├── 09-wave read while on.s │ │ ├── 10-wave trigger while on.s │ │ ├── 11-regs after power.s │ │ ├── 12-wave write while on.s │ │ ├── common │ │ ├── build_gbs.s │ │ ├── build_rom.s │ │ ├── console.bin │ │ ├── console.s │ │ ├── crc.s │ │ ├── delay.s │ │ ├── gb.inc │ │ ├── macros.inc │ │ ├── numbers.s │ │ ├── printing.s │ │ ├── shell.s │ │ └── testing.s │ │ ├── linkfile │ │ ├── readme.txt │ │ └── shell.inc ├── halt_bug.gb ├── instr_timing │ ├── instr_timing.gb │ ├── readme.txt │ └── source │ │ ├── common │ │ ├── build_gbs.s │ │ ├── build_rom.s │ │ ├── console.bin │ │ ├── console.s │ │ ├── crc.s │ │ ├── delay.s │ │ ├── gb.inc │ │ ├── macros.inc │ │ ├── numbers.s │ │ ├── printing.s │ │ ├── runtime.s │ │ ├── testing.s │ │ └── timer.s │ │ ├── instr_timing.s │ │ ├── linkfile │ │ └── shell.inc ├── interrupt_time │ ├── interrupt_time.gb │ └── interrupt_time.s ├── mem_timing-2 │ ├── mem_timing.gb │ ├── readme.txt │ ├── rom_singles │ │ ├── 01-read_timing.gb │ │ ├── 02-write_timing.gb │ │ └── 03-modify_timing.gb │ └── source │ │ ├── 01-read_timing.s │ │ ├── 02-write_timing.s │ │ ├── 03-modify_timing.s │ │ ├── common │ │ ├── build_gbs.s │ │ ├── build_rom.s │ │ ├── console.bin │ │ ├── console.s │ │ ├── crc.s │ │ ├── delay.s │ │ ├── gb.inc │ │ ├── macros.inc │ │ ├── numbers.s │ │ ├── printing.s │ │ ├── shell.s │ │ ├── testing.s │ │ └── tima_64.s │ │ ├── linkfile │ │ ├── readme.txt │ │ └── shell.inc ├── mem_timing │ ├── individual │ │ ├── 01-read_timing.gb │ │ ├── 02-write_timing.gb │ │ └── 03-modify_timing.gb │ ├── mem_timing.gb │ ├── readme.txt │ └── source │ │ ├── 01-read_timing.s │ │ ├── 02-write_timing.s │ │ ├── 03-modify_timing.s │ │ ├── common │ │ ├── build_gbs.s │ │ ├── build_rom.s │ │ ├── console.bin │ │ ├── console.s │ │ ├── crc.s │ │ ├── delay.s │ │ ├── gb.inc │ │ ├── macros.inc │ │ ├── numbers.s │ │ ├── printing.s │ │ ├── runtime.s │ │ ├── testing.s │ │ └── tima_64.s │ │ ├── linkfile │ │ └── shell.inc └── oam_bug │ ├── oam_bug.gb │ ├── readme.txt │ ├── rom_singles │ ├── 1-lcd_sync.gb │ ├── 2-causes.gb │ ├── 3-non_causes.gb │ ├── 4-scanline_timing.gb │ ├── 5-timing_bug.gb │ ├── 6-timing_no_bug.gb │ ├── 7-timing_effect.gb │ └── 8-instr_effect.gb │ └── source │ ├── 1-lcd_sync.s │ ├── 2-causes.s │ ├── 3-non_causes.s │ ├── 4-scanline_timing.s │ ├── 5-timing_bug.s │ ├── 6-timing_no_bug.s │ ├── 7-timing_effect.s │ ├── 8-instr_effect.s │ ├── common │ ├── build_gbs.s │ ├── build_rom.s │ ├── console.bin │ ├── console.s │ ├── crc.s │ ├── delay.s │ ├── gb.inc │ ├── macros.inc │ ├── numbers.s │ ├── ppu.s │ ├── printing.s │ ├── shell.s │ └── testing.s │ ├── linkfile │ ├── readme.txt │ └── shell.inc ├── mooneye-test-suite ├── LICENSE ├── acceptance │ ├── add_sp_e_timing.gb │ ├── add_sp_e_timing.sym │ ├── bits │ │ ├── mem_oam.gb │ │ ├── mem_oam.sym │ │ ├── reg_f.gb │ │ ├── reg_f.sym │ │ ├── unused_hwio-GS.gb │ │ └── unused_hwio-GS.sym │ ├── boot_div-S.gb │ ├── boot_div-S.sym │ ├── boot_div-dmg0.gb │ ├── boot_div-dmg0.sym │ ├── boot_div-dmgABCmgb.gb │ ├── boot_div-dmgABCmgb.sym │ ├── boot_div2-S.gb │ ├── boot_div2-S.sym │ ├── boot_hwio-S.gb │ ├── boot_hwio-S.sym │ ├── boot_hwio-dmg0.gb │ ├── boot_hwio-dmg0.sym │ ├── boot_hwio-dmgABCmgb.gb │ ├── boot_hwio-dmgABCmgb.sym │ ├── boot_regs-dmg0.gb │ ├── boot_regs-dmg0.sym │ ├── boot_regs-dmgABC.gb │ ├── boot_regs-dmgABC.sym │ ├── boot_regs-mgb.gb │ ├── boot_regs-mgb.sym │ ├── boot_regs-sgb.gb │ ├── boot_regs-sgb.sym │ ├── boot_regs-sgb2.gb │ ├── boot_regs-sgb2.sym │ ├── call_cc_timing.gb │ ├── call_cc_timing.sym │ ├── call_cc_timing2.gb │ ├── call_cc_timing2.sym │ ├── call_timing.gb │ ├── call_timing.sym │ ├── call_timing2.gb │ ├── call_timing2.sym │ ├── di_timing-GS.gb │ ├── di_timing-GS.sym │ ├── div_timing.gb │ ├── div_timing.sym │ ├── ei_sequence.gb │ ├── ei_sequence.sym │ ├── ei_timing.gb │ ├── ei_timing.sym │ ├── halt_ime0_ei.gb │ ├── halt_ime0_ei.sym │ ├── halt_ime0_nointr_timing.gb │ ├── halt_ime0_nointr_timing.sym │ ├── halt_ime1_timing.gb │ ├── halt_ime1_timing.sym │ ├── halt_ime1_timing2-GS.gb │ ├── halt_ime1_timing2-GS.sym │ ├── if_ie_registers.gb │ ├── if_ie_registers.sym │ ├── instr │ │ ├── daa.gb │ │ └── daa.sym │ ├── interrupts │ │ ├── ie_push.gb │ │ └── ie_push.sym │ ├── intr_timing.gb │ ├── intr_timing.sym │ ├── jp_cc_timing.gb │ ├── jp_cc_timing.sym │ ├── jp_timing.gb │ ├── jp_timing.sym │ ├── ld_hl_sp_e_timing.gb │ ├── ld_hl_sp_e_timing.sym │ ├── oam_dma │ │ ├── basic.gb │ │ ├── basic.sym │ │ ├── reg_read.gb │ │ ├── reg_read.sym │ │ ├── sources-GS.gb │ │ └── sources-GS.sym │ ├── oam_dma_restart.gb │ ├── oam_dma_restart.sym │ ├── oam_dma_start.gb │ ├── oam_dma_start.sym │ ├── oam_dma_timing.gb │ ├── oam_dma_timing.sym │ ├── pop_timing.gb │ ├── pop_timing.sym │ ├── ppu │ │ ├── hblank_ly_scx_timing-GS.gb │ │ ├── hblank_ly_scx_timing-GS.sym │ │ ├── intr_1_2_timing-GS.gb │ │ ├── intr_1_2_timing-GS.sym │ │ ├── intr_2_0_timing.gb │ │ ├── intr_2_0_timing.sym │ │ ├── intr_2_mode0_timing.gb │ │ ├── intr_2_mode0_timing.sym │ │ ├── intr_2_mode0_timing_sprites.gb │ │ ├── intr_2_mode0_timing_sprites.sym │ │ ├── intr_2_mode3_timing.gb │ │ ├── intr_2_mode3_timing.sym │ │ ├── intr_2_oam_ok_timing.gb │ │ ├── intr_2_oam_ok_timing.sym │ │ ├── lcdon_timing-GS.gb │ │ ├── lcdon_timing-GS.sym │ │ ├── lcdon_write_timing-GS.gb │ │ ├── lcdon_write_timing-GS.sym │ │ ├── stat_irq_blocking.gb │ │ ├── stat_irq_blocking.sym │ │ ├── stat_lyc_onoff.gb │ │ ├── stat_lyc_onoff.sym │ │ ├── vblank_stat_intr-GS.gb │ │ └── vblank_stat_intr-GS.sym │ ├── push_timing.gb │ ├── push_timing.sym │ ├── rapid_di_ei.gb │ ├── rapid_di_ei.sym │ ├── ret_cc_timing.gb │ ├── ret_cc_timing.sym │ ├── ret_timing.gb │ ├── ret_timing.sym │ ├── reti_intr_timing.gb │ ├── reti_intr_timing.sym │ ├── reti_timing.gb │ ├── reti_timing.sym │ ├── rst_timing.gb │ ├── rst_timing.sym │ ├── serial │ │ ├── boot_sclk_align-dmgABCmgb.gb │ │ └── boot_sclk_align-dmgABCmgb.sym │ └── timer │ │ ├── div_write.gb │ │ ├── div_write.sym │ │ ├── rapid_toggle.gb │ │ ├── rapid_toggle.sym │ │ ├── tim00.gb │ │ ├── tim00.sym │ │ ├── tim00_div_trigger.gb │ │ ├── tim00_div_trigger.sym │ │ ├── tim01.gb │ │ ├── tim01.sym │ │ ├── tim01_div_trigger.gb │ │ ├── tim01_div_trigger.sym │ │ ├── tim10.gb │ │ ├── tim10.sym │ │ ├── tim10_div_trigger.gb │ │ ├── tim10_div_trigger.sym │ │ ├── tim11.gb │ │ ├── tim11.sym │ │ ├── tim11_div_trigger.gb │ │ ├── tim11_div_trigger.sym │ │ ├── tima_reload.gb │ │ ├── tima_reload.sym │ │ ├── tima_write_reloading.gb │ │ ├── tima_write_reloading.sym │ │ ├── tma_write_reloading.gb │ │ └── tma_write_reloading.sym ├── emulator-only │ ├── mbc1 │ │ ├── bits_bank1.gb │ │ ├── bits_bank1.sym │ │ ├── bits_bank2.gb │ │ ├── bits_bank2.sym │ │ ├── bits_mode.gb │ │ ├── bits_mode.sym │ │ ├── bits_ramg.gb │ │ ├── bits_ramg.sym │ │ ├── multicart_rom_8Mb.gb │ │ ├── multicart_rom_8Mb.sym │ │ ├── ram_256kb.gb │ │ ├── ram_256kb.sym │ │ ├── ram_64kb.gb │ │ ├── ram_64kb.sym │ │ ├── rom_16Mb.gb │ │ ├── rom_16Mb.sym │ │ ├── rom_1Mb.gb │ │ ├── rom_1Mb.sym │ │ ├── rom_2Mb.gb │ │ ├── rom_2Mb.sym │ │ ├── rom_4Mb.gb │ │ ├── rom_4Mb.sym │ │ ├── rom_512kb.gb │ │ ├── rom_512kb.sym │ │ ├── rom_8Mb.gb │ │ └── rom_8Mb.sym │ ├── mbc2 │ │ ├── bits_ramg.gb │ │ ├── bits_ramg.sym │ │ ├── bits_romb.gb │ │ ├── bits_romb.sym │ │ ├── bits_unused.gb │ │ ├── bits_unused.sym │ │ ├── ram.gb │ │ ├── ram.sym │ │ ├── rom_1Mb.gb │ │ ├── rom_1Mb.sym │ │ ├── rom_2Mb.gb │ │ ├── rom_2Mb.sym │ │ ├── rom_512kb.gb │ │ └── rom_512kb.sym │ └── mbc5 │ │ ├── rom_16Mb.gb │ │ ├── rom_16Mb.sym │ │ ├── rom_1Mb.gb │ │ ├── rom_1Mb.sym │ │ ├── rom_2Mb.gb │ │ ├── rom_2Mb.sym │ │ ├── rom_32Mb.gb │ │ ├── rom_32Mb.sym │ │ ├── rom_4Mb.gb │ │ ├── rom_4Mb.sym │ │ ├── rom_512kb.gb │ │ ├── rom_512kb.sym │ │ ├── rom_64Mb.gb │ │ ├── rom_64Mb.sym │ │ ├── rom_8Mb.gb │ │ └── rom_8Mb.sym ├── madness │ ├── mgb_oam_dma_halt_sprites.gb │ └── mgb_oam_dma_halt_sprites.sym ├── manual-only │ ├── sprite_priority.gb │ └── sprite_priority.sym ├── misc │ ├── bits │ │ ├── unused_hwio-C.gb │ │ └── unused_hwio-C.sym │ ├── boot_div-A.gb │ ├── boot_div-A.sym │ ├── boot_div-cgb0.gb │ ├── boot_div-cgb0.sym │ ├── boot_div-cgbABCDE.gb │ ├── boot_div-cgbABCDE.sym │ ├── boot_hwio-C.gb │ ├── boot_hwio-C.sym │ ├── boot_regs-A.gb │ ├── boot_regs-A.sym │ ├── boot_regs-cgb.gb │ ├── boot_regs-cgb.sym │ └── ppu │ │ ├── vblank_stat_intr-C.gb │ │ └── vblank_stat_intr-C.sym └── utils │ ├── bootrom_dumper.gb │ ├── bootrom_dumper.sym │ ├── dump_boot_hwio.gb │ └── dump_boot_hwio.sym └── test.rs /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/README.md -------------------------------------------------------------------------------- /assets/sameboy-bootroms/agb_boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/assets/sameboy-bootroms/agb_boot.bin -------------------------------------------------------------------------------- /assets/sameboy-bootroms/cgb_boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/assets/sameboy-bootroms/cgb_boot.bin -------------------------------------------------------------------------------- /assets/sameboy-bootroms/dmg_boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/assets/sameboy-bootroms/dmg_boot.bin -------------------------------------------------------------------------------- /assets/sameboy-bootroms/sgb2_boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/assets/sameboy-bootroms/sgb2_boot.bin -------------------------------------------------------------------------------- /assets/sameboy-bootroms/sgb_boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/assets/sameboy-bootroms/sgb_boot.bin -------------------------------------------------------------------------------- /assets/tgbr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/assets/tgbr.ico -------------------------------------------------------------------------------- /src/apu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/apu.rs -------------------------------------------------------------------------------- /src/bus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/bus.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/consts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/consts.rs -------------------------------------------------------------------------------- /src/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/context.rs -------------------------------------------------------------------------------- /src/cpu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/cpu.rs -------------------------------------------------------------------------------- /src/gameboy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/gameboy.rs -------------------------------------------------------------------------------- /src/interface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/interface.rs -------------------------------------------------------------------------------- /src/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/io.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/mbc/mbc1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/mbc/mbc1.rs -------------------------------------------------------------------------------- /src/mbc/mbc2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/mbc/mbc2.rs -------------------------------------------------------------------------------- /src/mbc/mbc3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/mbc/mbc3.rs -------------------------------------------------------------------------------- /src/mbc/mbc5.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/mbc/mbc5.rs -------------------------------------------------------------------------------- /src/mbc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/mbc/mod.rs -------------------------------------------------------------------------------- /src/ppu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/ppu.rs -------------------------------------------------------------------------------- /src/rom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/rom.rs -------------------------------------------------------------------------------- /src/serial.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/serial.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/src/util.rs -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/cgb_sound.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/cgb_sound.gb -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/readme.txt -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/rom_singles/01-registers.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/rom_singles/01-registers.gb -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/rom_singles/02-len ctr.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/rom_singles/02-len ctr.gb -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/rom_singles/03-trigger.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/rom_singles/03-trigger.gb -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/rom_singles/04-sweep.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/rom_singles/04-sweep.gb -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/rom_singles/05-sweep details.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/rom_singles/05-sweep details.gb -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/rom_singles/06-overflow on trigger.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/rom_singles/06-overflow on trigger.gb -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/rom_singles/07-len sweep period sync.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/rom_singles/07-len sweep period sync.gb -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/rom_singles/08-len ctr during power.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/rom_singles/08-len ctr during power.gb -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/rom_singles/09-wave read while on.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/rom_singles/09-wave read while on.gb -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/rom_singles/10-wave trigger while on.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/rom_singles/10-wave trigger while on.gb -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/rom_singles/11-regs after power.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/rom_singles/11-regs after power.gb -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/rom_singles/12-wave.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/rom_singles/12-wave.gb -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/01-registers.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/01-registers.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/02-len ctr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/02-len ctr.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/03-trigger.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/03-trigger.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/04-sweep.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/04-sweep.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/05-sweep details.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/05-sweep details.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/06-overflow on trigger.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/06-overflow on trigger.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/07-len sweep period sync.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/07-len sweep period sync.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/08-len ctr during power.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/08-len ctr during power.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/09-wave read while on.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/09-wave read while on.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/10-wave trigger while on.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/10-wave trigger while on.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/11-regs after power.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/11-regs after power.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/12-wave.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/12-wave.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/common/build_gbs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/common/build_gbs.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/common/build_rom.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/common/build_rom.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/common/console.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/common/console.bin -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/common/console.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/common/console.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/common/crc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/common/crc.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/common/delay.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/common/delay.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/common/gb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/common/gb.inc -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/common/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/common/macros.inc -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/common/numbers.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/common/numbers.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/common/printing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/common/printing.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/common/shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/common/shell.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/common/testing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/common/testing.s -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | test.o 3 | -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/readme.txt -------------------------------------------------------------------------------- /tests/blargg/cgb_sound/source/shell.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cgb_sound/source/shell.inc -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/cpu_instrs.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/cpu_instrs.gb -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/individual/01-special.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/individual/01-special.gb -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/individual/02-interrupts.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/individual/02-interrupts.gb -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/individual/03-op sp,hl.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/individual/03-op sp,hl.gb -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/individual/04-op r,imm.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/individual/04-op r,imm.gb -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/individual/05-op rp.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/individual/05-op rp.gb -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/individual/06-ld r,r.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/individual/06-ld r,r.gb -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/individual/07-jr,jp,call,ret,rst.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/individual/07-jr,jp,call,ret,rst.gb -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/individual/08-misc instrs.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/individual/08-misc instrs.gb -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/individual/09-op r,r.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/individual/09-op r,r.gb -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/individual/10-bit ops.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/individual/10-bit ops.gb -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/individual/11-op a,(hl).gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/individual/11-op a,(hl).gb -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/readme.txt -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/01-special.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/01-special.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/02-interrupts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/02-interrupts.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/03-op sp,hl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/03-op sp,hl.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/04-op r,imm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/04-op r,imm.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/05-op rp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/05-op rp.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/06-ld r,r.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/06-ld r,r.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/07-jr,jp,call,ret,rst.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/07-jr,jp,call,ret,rst.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/08-misc instrs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/08-misc instrs.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/09-op r,r.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/09-op r,r.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/10-bit ops.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/10-bit ops.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/11-op a,(hl).s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/11-op a,(hl).s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/apu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/apu.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/build_gbs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/build_gbs.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/build_rom.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/build_rom.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/checksums.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/checksums.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/console.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/console.bin -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/console.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/console.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/cpu_speed.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/cpu_speed.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/crc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/crc.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/crc_fast.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/crc_fast.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/delay.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/delay.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/gb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/gb.inc -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/instr_test.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/instr_test.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/macros.inc -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/multi_custom.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/multi_custom.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/numbers.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/numbers.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/printing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/printing.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/runtime.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/runtime.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/common/testing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/common/testing.s -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | test.o 3 | -------------------------------------------------------------------------------- /tests/blargg/cpu_instrs/source/shell.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/cpu_instrs/source/shell.inc -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/dmg_sound.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/dmg_sound.gb -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/readme.txt -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/rom_singles/01-registers.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/rom_singles/01-registers.gb -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/rom_singles/02-len ctr.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/rom_singles/02-len ctr.gb -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/rom_singles/03-trigger.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/rom_singles/03-trigger.gb -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/rom_singles/04-sweep.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/rom_singles/04-sweep.gb -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/rom_singles/05-sweep details.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/rom_singles/05-sweep details.gb -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/rom_singles/06-overflow on trigger.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/rom_singles/06-overflow on trigger.gb -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/rom_singles/07-len sweep period sync.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/rom_singles/07-len sweep period sync.gb -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/rom_singles/08-len ctr during power.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/rom_singles/08-len ctr during power.gb -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/rom_singles/09-wave read while on.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/rom_singles/09-wave read while on.gb -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/rom_singles/10-wave trigger while on.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/rom_singles/10-wave trigger while on.gb -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/rom_singles/11-regs after power.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/rom_singles/11-regs after power.gb -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/rom_singles/12-wave write while on.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/rom_singles/12-wave write while on.gb -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/01-registers.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/01-registers.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/02-len ctr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/02-len ctr.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/03-trigger.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/03-trigger.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/04-sweep.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/04-sweep.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/05-sweep details.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/05-sweep details.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/06-overflow on trigger.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/06-overflow on trigger.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/07-len sweep period sync.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/07-len sweep period sync.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/08-len ctr during power.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/08-len ctr during power.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/09-wave read while on.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/09-wave read while on.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/10-wave trigger while on.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/10-wave trigger while on.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/11-regs after power.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/11-regs after power.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/12-wave write while on.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/12-wave write while on.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/common/build_gbs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/common/build_gbs.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/common/build_rom.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/common/build_rom.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/common/console.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/common/console.bin -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/common/console.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/common/console.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/common/crc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/common/crc.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/common/delay.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/common/delay.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/common/gb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/common/gb.inc -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/common/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/common/macros.inc -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/common/numbers.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/common/numbers.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/common/printing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/common/printing.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/common/shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/common/shell.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/common/testing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/common/testing.s -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | test.o 3 | -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/readme.txt -------------------------------------------------------------------------------- /tests/blargg/dmg_sound/source/shell.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/dmg_sound/source/shell.inc -------------------------------------------------------------------------------- /tests/blargg/halt_bug.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/halt_bug.gb -------------------------------------------------------------------------------- /tests/blargg/instr_timing/instr_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/instr_timing.gb -------------------------------------------------------------------------------- /tests/blargg/instr_timing/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/readme.txt -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/common/build_gbs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/source/common/build_gbs.s -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/common/build_rom.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/source/common/build_rom.s -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/common/console.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/source/common/console.bin -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/common/console.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/source/common/console.s -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/common/crc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/source/common/crc.s -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/common/delay.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/source/common/delay.s -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/common/gb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/source/common/gb.inc -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/common/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/source/common/macros.inc -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/common/numbers.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/source/common/numbers.s -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/common/printing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/source/common/printing.s -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/common/runtime.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/source/common/runtime.s -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/common/testing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/source/common/testing.s -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/common/timer.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/source/common/timer.s -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/instr_timing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/source/instr_timing.s -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | test.o 3 | -------------------------------------------------------------------------------- /tests/blargg/instr_timing/source/shell.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/instr_timing/source/shell.inc -------------------------------------------------------------------------------- /tests/blargg/interrupt_time/interrupt_time.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/interrupt_time/interrupt_time.gb -------------------------------------------------------------------------------- /tests/blargg/interrupt_time/interrupt_time.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/interrupt_time/interrupt_time.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/mem_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/mem_timing.gb -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/readme.txt -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/rom_singles/01-read_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/rom_singles/01-read_timing.gb -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/rom_singles/02-write_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/rom_singles/02-write_timing.gb -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/rom_singles/03-modify_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/rom_singles/03-modify_timing.gb -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/01-read_timing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/01-read_timing.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/02-write_timing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/02-write_timing.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/03-modify_timing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/03-modify_timing.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/common/build_gbs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/common/build_gbs.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/common/build_rom.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/common/build_rom.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/common/console.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/common/console.bin -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/common/console.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/common/console.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/common/crc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/common/crc.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/common/delay.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/common/delay.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/common/gb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/common/gb.inc -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/common/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/common/macros.inc -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/common/numbers.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/common/numbers.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/common/printing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/common/printing.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/common/shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/common/shell.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/common/testing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/common/testing.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/common/tima_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/common/tima_64.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | test.o 3 | -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/readme.txt -------------------------------------------------------------------------------- /tests/blargg/mem_timing-2/source/shell.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing-2/source/shell.inc -------------------------------------------------------------------------------- /tests/blargg/mem_timing/individual/01-read_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/individual/01-read_timing.gb -------------------------------------------------------------------------------- /tests/blargg/mem_timing/individual/02-write_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/individual/02-write_timing.gb -------------------------------------------------------------------------------- /tests/blargg/mem_timing/individual/03-modify_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/individual/03-modify_timing.gb -------------------------------------------------------------------------------- /tests/blargg/mem_timing/mem_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/mem_timing.gb -------------------------------------------------------------------------------- /tests/blargg/mem_timing/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/readme.txt -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/01-read_timing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/01-read_timing.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/02-write_timing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/02-write_timing.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/03-modify_timing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/03-modify_timing.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/common/build_gbs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/common/build_gbs.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/common/build_rom.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/common/build_rom.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/common/console.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/common/console.bin -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/common/console.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/common/console.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/common/crc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/common/crc.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/common/delay.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/common/delay.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/common/gb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/common/gb.inc -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/common/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/common/macros.inc -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/common/numbers.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/common/numbers.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/common/printing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/common/printing.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/common/runtime.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/common/runtime.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/common/testing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/common/testing.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/common/tima_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/common/tima_64.s -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | test.o 3 | -------------------------------------------------------------------------------- /tests/blargg/mem_timing/source/shell.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/mem_timing/source/shell.inc -------------------------------------------------------------------------------- /tests/blargg/oam_bug/oam_bug.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/oam_bug.gb -------------------------------------------------------------------------------- /tests/blargg/oam_bug/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/readme.txt -------------------------------------------------------------------------------- /tests/blargg/oam_bug/rom_singles/1-lcd_sync.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/rom_singles/1-lcd_sync.gb -------------------------------------------------------------------------------- /tests/blargg/oam_bug/rom_singles/2-causes.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/rom_singles/2-causes.gb -------------------------------------------------------------------------------- /tests/blargg/oam_bug/rom_singles/3-non_causes.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/rom_singles/3-non_causes.gb -------------------------------------------------------------------------------- /tests/blargg/oam_bug/rom_singles/4-scanline_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/rom_singles/4-scanline_timing.gb -------------------------------------------------------------------------------- /tests/blargg/oam_bug/rom_singles/5-timing_bug.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/rom_singles/5-timing_bug.gb -------------------------------------------------------------------------------- /tests/blargg/oam_bug/rom_singles/6-timing_no_bug.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/rom_singles/6-timing_no_bug.gb -------------------------------------------------------------------------------- /tests/blargg/oam_bug/rom_singles/7-timing_effect.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/rom_singles/7-timing_effect.gb -------------------------------------------------------------------------------- /tests/blargg/oam_bug/rom_singles/8-instr_effect.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/rom_singles/8-instr_effect.gb -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/1-lcd_sync.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/1-lcd_sync.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/2-causes.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/2-causes.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/3-non_causes.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/3-non_causes.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/4-scanline_timing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/4-scanline_timing.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/5-timing_bug.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/5-timing_bug.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/6-timing_no_bug.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/6-timing_no_bug.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/7-timing_effect.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/7-timing_effect.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/8-instr_effect.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/8-instr_effect.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/common/build_gbs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/common/build_gbs.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/common/build_rom.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/common/build_rom.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/common/console.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/common/console.bin -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/common/console.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/common/console.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/common/crc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/common/crc.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/common/delay.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/common/delay.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/common/gb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/common/gb.inc -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/common/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/common/macros.inc -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/common/numbers.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/common/numbers.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/common/ppu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/common/ppu.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/common/printing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/common/printing.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/common/shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/common/shell.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/common/testing.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/common/testing.s -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | test.o 3 | -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/readme.txt -------------------------------------------------------------------------------- /tests/blargg/oam_bug/source/shell.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/blargg/oam_bug/source/shell.inc -------------------------------------------------------------------------------- /tests/mooneye-test-suite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/LICENSE -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/add_sp_e_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/add_sp_e_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/add_sp_e_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/add_sp_e_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/bits/mem_oam.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/bits/mem_oam.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/bits/mem_oam.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/bits/mem_oam.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/bits/reg_f.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/bits/reg_f.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/bits/reg_f.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/bits/reg_f.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/bits/unused_hwio-GS.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/bits/unused_hwio-GS.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/bits/unused_hwio-GS.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/bits/unused_hwio-GS.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_div-S.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_div-S.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_div-S.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_div-S.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_div-dmg0.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_div-dmg0.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_div-dmg0.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_div-dmg0.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_div-dmgABCmgb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_div-dmgABCmgb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_div-dmgABCmgb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_div-dmgABCmgb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_div2-S.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_div2-S.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_div2-S.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_div2-S.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_hwio-S.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_hwio-S.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_hwio-S.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_hwio-S.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_hwio-dmg0.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_hwio-dmg0.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_hwio-dmg0.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_hwio-dmg0.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_hwio-dmgABCmgb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_hwio-dmgABCmgb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_hwio-dmgABCmgb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_hwio-dmgABCmgb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_regs-dmg0.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_regs-dmg0.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_regs-dmg0.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_regs-dmg0.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_regs-dmgABC.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_regs-dmgABC.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_regs-dmgABC.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_regs-dmgABC.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_regs-mgb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_regs-mgb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_regs-mgb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_regs-mgb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_regs-sgb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_regs-sgb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_regs-sgb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_regs-sgb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_regs-sgb2.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_regs-sgb2.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/boot_regs-sgb2.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/boot_regs-sgb2.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/call_cc_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/call_cc_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/call_cc_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/call_cc_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/call_cc_timing2.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/call_cc_timing2.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/call_cc_timing2.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/call_cc_timing2.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/call_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/call_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/call_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/call_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/call_timing2.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/call_timing2.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/call_timing2.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/call_timing2.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/di_timing-GS.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/di_timing-GS.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/di_timing-GS.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/di_timing-GS.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/div_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/div_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/div_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/div_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ei_sequence.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ei_sequence.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ei_sequence.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ei_sequence.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ei_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ei_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ei_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ei_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/halt_ime0_ei.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/halt_ime0_ei.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/halt_ime0_ei.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/halt_ime0_ei.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/halt_ime0_nointr_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/halt_ime0_nointr_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/halt_ime0_nointr_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/halt_ime0_nointr_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/halt_ime1_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/halt_ime1_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/halt_ime1_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/halt_ime1_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/halt_ime1_timing2-GS.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/halt_ime1_timing2-GS.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/halt_ime1_timing2-GS.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/halt_ime1_timing2-GS.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/if_ie_registers.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/if_ie_registers.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/if_ie_registers.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/if_ie_registers.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/instr/daa.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/instr/daa.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/instr/daa.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/instr/daa.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/interrupts/ie_push.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/interrupts/ie_push.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/interrupts/ie_push.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/interrupts/ie_push.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/intr_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/intr_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/intr_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/intr_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/jp_cc_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/jp_cc_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/jp_cc_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/jp_cc_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/jp_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/jp_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/jp_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/jp_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ld_hl_sp_e_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ld_hl_sp_e_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ld_hl_sp_e_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ld_hl_sp_e_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/oam_dma/basic.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/oam_dma/basic.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/oam_dma/basic.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/oam_dma/basic.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/oam_dma/reg_read.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/oam_dma/reg_read.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/oam_dma/reg_read.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/oam_dma/reg_read.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/oam_dma/sources-GS.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/oam_dma/sources-GS.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/oam_dma/sources-GS.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/oam_dma/sources-GS.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/oam_dma_restart.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/oam_dma_restart.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/oam_dma_restart.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/oam_dma_restart.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/oam_dma_start.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/oam_dma_start.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/oam_dma_start.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/oam_dma_start.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/oam_dma_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/oam_dma_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/oam_dma_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/oam_dma_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/pop_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/pop_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/pop_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/pop_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/hblank_ly_scx_timing-GS.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/hblank_ly_scx_timing-GS.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/hblank_ly_scx_timing-GS.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/hblank_ly_scx_timing-GS.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/intr_1_2_timing-GS.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/intr_1_2_timing-GS.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/intr_1_2_timing-GS.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/intr_1_2_timing-GS.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/intr_2_0_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/intr_2_0_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/intr_2_0_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/intr_2_0_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/intr_2_mode0_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/intr_2_mode0_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/intr_2_mode0_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/intr_2_mode0_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/intr_2_mode0_timing_sprites.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/intr_2_mode0_timing_sprites.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/intr_2_mode0_timing_sprites.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/intr_2_mode0_timing_sprites.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/intr_2_mode3_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/intr_2_mode3_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/intr_2_mode3_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/intr_2_mode3_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/intr_2_oam_ok_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/intr_2_oam_ok_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/intr_2_oam_ok_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/intr_2_oam_ok_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/lcdon_timing-GS.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/lcdon_timing-GS.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/lcdon_timing-GS.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/lcdon_timing-GS.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/lcdon_write_timing-GS.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/lcdon_write_timing-GS.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/lcdon_write_timing-GS.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/lcdon_write_timing-GS.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/stat_irq_blocking.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/stat_irq_blocking.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/stat_irq_blocking.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/stat_irq_blocking.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/stat_lyc_onoff.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/stat_lyc_onoff.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/stat_lyc_onoff.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/stat_lyc_onoff.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/vblank_stat_intr-GS.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/vblank_stat_intr-GS.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ppu/vblank_stat_intr-GS.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ppu/vblank_stat_intr-GS.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/push_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/push_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/push_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/push_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/rapid_di_ei.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/rapid_di_ei.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/rapid_di_ei.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/rapid_di_ei.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ret_cc_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ret_cc_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ret_cc_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ret_cc_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ret_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ret_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/ret_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/ret_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/reti_intr_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/reti_intr_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/reti_intr_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/reti_intr_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/reti_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/reti_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/reti_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/reti_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/rst_timing.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/rst_timing.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/rst_timing.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/rst_timing.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/serial/boot_sclk_align-dmgABCmgb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/serial/boot_sclk_align-dmgABCmgb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/serial/boot_sclk_align-dmgABCmgb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/serial/boot_sclk_align-dmgABCmgb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/div_write.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/div_write.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/div_write.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/div_write.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/rapid_toggle.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/rapid_toggle.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/rapid_toggle.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/rapid_toggle.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim00.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim00.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim00.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim00.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim00_div_trigger.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim00_div_trigger.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim00_div_trigger.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim00_div_trigger.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim01.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim01.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim01.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim01.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim01_div_trigger.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim01_div_trigger.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim01_div_trigger.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim01_div_trigger.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim10.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim10.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim10.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim10.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim10_div_trigger.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim10_div_trigger.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim10_div_trigger.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim10_div_trigger.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim11.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim11.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim11.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim11.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim11_div_trigger.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim11_div_trigger.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tim11_div_trigger.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tim11_div_trigger.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tima_reload.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tima_reload.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tima_reload.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tima_reload.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tima_write_reloading.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tima_write_reloading.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tima_write_reloading.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tima_write_reloading.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tma_write_reloading.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tma_write_reloading.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/acceptance/timer/tma_write_reloading.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/acceptance/timer/tma_write_reloading.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/bits_bank1.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/bits_bank1.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/bits_bank1.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/bits_bank1.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/bits_bank2.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/bits_bank2.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/bits_bank2.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/bits_bank2.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/bits_mode.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/bits_mode.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/bits_mode.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/bits_mode.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/bits_ramg.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/bits_ramg.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/bits_ramg.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/bits_ramg.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/multicart_rom_8Mb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/multicart_rom_8Mb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/multicart_rom_8Mb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/multicart_rom_8Mb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/ram_256kb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/ram_256kb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/ram_256kb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/ram_256kb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/ram_64kb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/ram_64kb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/ram_64kb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/ram_64kb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/rom_16Mb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/rom_16Mb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/rom_16Mb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/rom_16Mb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/rom_1Mb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/rom_1Mb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/rom_1Mb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/rom_1Mb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/rom_2Mb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/rom_2Mb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/rom_2Mb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/rom_2Mb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/rom_4Mb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/rom_4Mb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/rom_4Mb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/rom_4Mb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/rom_512kb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/rom_512kb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/rom_512kb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/rom_512kb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/rom_8Mb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/rom_8Mb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc1/rom_8Mb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc1/rom_8Mb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc2/bits_ramg.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc2/bits_ramg.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc2/bits_ramg.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc2/bits_ramg.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc2/bits_romb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc2/bits_romb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc2/bits_romb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc2/bits_romb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc2/bits_unused.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc2/bits_unused.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc2/bits_unused.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc2/bits_unused.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc2/ram.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc2/ram.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc2/ram.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc2/ram.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc2/rom_1Mb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc2/rom_1Mb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc2/rom_1Mb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc2/rom_1Mb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc2/rom_2Mb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc2/rom_2Mb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc2/rom_2Mb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc2/rom_2Mb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc2/rom_512kb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc2/rom_512kb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc2/rom_512kb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc2/rom_512kb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_16Mb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_16Mb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_16Mb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_16Mb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_1Mb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_1Mb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_1Mb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_1Mb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_2Mb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_2Mb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_2Mb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_2Mb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_32Mb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_32Mb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_32Mb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_32Mb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_4Mb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_4Mb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_4Mb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_4Mb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_512kb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_512kb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_512kb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_512kb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_64Mb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_64Mb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_64Mb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_64Mb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_8Mb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_8Mb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/emulator-only/mbc5/rom_8Mb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/emulator-only/mbc5/rom_8Mb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/madness/mgb_oam_dma_halt_sprites.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/madness/mgb_oam_dma_halt_sprites.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/madness/mgb_oam_dma_halt_sprites.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/madness/mgb_oam_dma_halt_sprites.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/manual-only/sprite_priority.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/manual-only/sprite_priority.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/manual-only/sprite_priority.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/manual-only/sprite_priority.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/bits/unused_hwio-C.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/bits/unused_hwio-C.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/bits/unused_hwio-C.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/bits/unused_hwio-C.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/boot_div-A.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/boot_div-A.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/boot_div-A.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/boot_div-A.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/boot_div-cgb0.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/boot_div-cgb0.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/boot_div-cgb0.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/boot_div-cgb0.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/boot_div-cgbABCDE.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/boot_div-cgbABCDE.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/boot_div-cgbABCDE.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/boot_div-cgbABCDE.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/boot_hwio-C.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/boot_hwio-C.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/boot_hwio-C.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/boot_hwio-C.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/boot_regs-A.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/boot_regs-A.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/boot_regs-A.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/boot_regs-A.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/boot_regs-cgb.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/boot_regs-cgb.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/boot_regs-cgb.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/boot_regs-cgb.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/ppu/vblank_stat_intr-C.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/ppu/vblank_stat_intr-C.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/misc/ppu/vblank_stat_intr-C.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/misc/ppu/vblank_stat_intr-C.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/utils/bootrom_dumper.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/utils/bootrom_dumper.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/utils/bootrom_dumper.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/utils/bootrom_dumper.sym -------------------------------------------------------------------------------- /tests/mooneye-test-suite/utils/dump_boot_hwio.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/utils/dump_boot_hwio.gb -------------------------------------------------------------------------------- /tests/mooneye-test-suite/utils/dump_boot_hwio.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/mooneye-test-suite/utils/dump_boot_hwio.sym -------------------------------------------------------------------------------- /tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/tgbr/HEAD/tests/test.rs --------------------------------------------------------------------------------