Fixed ei_sequence test

This commit is contained in:
Lior Halphon 2017-12-03 21:07:34 +02:00
parent e71154b7e0
commit 19c382c9e0
1 changed files with 4 additions and 3 deletions

View File

@ -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)
{ {