} else {
regs.PC += 2; // if !cc, skip 2 (nn) bytes
}
+ break;
}
case 0xCC: { // CALL Z, nn
} else {
regs.PC += 2; // if !cc, skip 2 (nn) bytes
}
+ break;
}
case 0xD4: { // CALL NC, nn
} else {
regs.PC += 2; // if !cc, skip 2 (nn) bytes
}
+ break;
}
case 0xDC: { // CALL C, nn
} else {
regs.PC += 2; // if !cc, skip 2 (nn) bytes
}
+ break;
}
// Restarts
u16 retaddr = (memory.read(regs.SP+1)<<8) | memory.read(regs.SP);
regs.SP += 2;
regs.PC = retaddr;
+ break;
}
// RET cc
regs.SP += 2;
regs.PC = retaddr;
IME=1;
+ break;
}
default:
case 0x48: port_name = "OBP0"; break;
case 0x49: port_name = "OBP1"; break;
case 0x46: port_name = "DMA "; break;
+ case 0x0F: port_name = "IF "; break;
case 0xFF: port_name = "IE "; break;
default:
if (port >= 0x80 && port <= 0xFE) {
opcode = memory.read(PC++);
std::ostringstream result;
- result << std::hex << std::setfill('0');
+ result << std::hex << std::uppercase << std::setfill('0');
switch(opcode)
{
enum GameBoyType { GAMEBOY, GAMEBOYCOLOR, SUPERGAMEBOY } gameboy_type;
enum InterruptRequest {
IRQ_VBLANK = 0x00,
- IRQ_LCD_STAT = 0x10,
- IRQ_TIMER = 0x20,
- IRQ_SERIAL = 0x40,
- IRQ_JOYPAD = 0x80
+ IRQ_LCD_STAT = 0x01,
+ IRQ_TIMER = 0x02,
+ IRQ_SERIAL = 0x04,
+ IRQ_JOYPAD = 0x08
};
enum Flag
GameBoy(std::string rom_name, GameBoyType type=GAMEBOY);
- void irq(InterruptRequest i) { memory.write(0xFFFF, memory.read(0xFFFF) | i); }
+ void irq(InterruptRequest i) { memory.write(0xFF0F, memory.read(0xFF0F) | i); }
void reset();
run_status run_cycle();
run_status run();