mirror of https://github.com/bsnes-emu/bsnes.git
Fixed ei_sequence test
This commit is contained in:
parent
e71154b7e0
commit
19c382c9e0
|
@ -1073,9 +1073,10 @@ static void ei(GB_gameboy_t *gb, uint8_t opcode)
|
||||||
{
|
{
|
||||||
/* ei is actually "disable interrupts for one instruction, then enable them". */
|
/* ei is actually "disable interrupts for one instruction, then enable them". */
|
||||||
GB_advance_cycles(gb, 4);
|
GB_advance_cycles(gb, 4);
|
||||||
gb->ime = false;
|
if (!gb->ime && !gb->ime_toggle) {
|
||||||
gb->ime_toggle = true;
|
gb->ime_toggle = true;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void ld_hl_sp_r8(GB_gameboy_t *gb, uint8_t opcode)
|
static void ld_hl_sp_r8(GB_gameboy_t *gb, uint8_t opcode)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue