}
}
+void GBMemory::write16(u16 addr, u8 value, WatchpointControl watch)
+{
+ write(addr, value & 0xFF, watch);
+ write(addr+1, value >> 8, watch);
+}
u8 GBMemory::read(u16 addr, WatchpointControl watch)
{
DONT_WATCH=1,
};
- u8 read (u16 addr, WatchpointControl watch = WATCH);
- u16 read16(u16 addr, WatchpointControl watch = WATCH);
- void write (u16 addr, u8 value, WatchpointControl watch = WATCH);
+ u8 read (u16 addr, WatchpointControl watch = WATCH);
+ u16 read16 (u16 addr, WatchpointControl watch = WATCH);
+ void write (u16 addr, u8 value, WatchpointControl watch = WATCH);
+ void write16(u16 addr, u8 value, WatchpointControl watch = WATCH);
enum PortAccess
{
case 0x08: {
int addr = memory.read16(regs.PC);
regs.PC += 2;
- memory.write(addr, regs.SP);
+ memory.write16(addr, regs.SP);
cycles_until_next_instruction = 20;
break;
}