}
}
-void GBMemory::write16(u16 addr, u8 value, WatchpointControl watch)
+void GBMemory::write16(u16 addr, u16 value, WatchpointControl watch)
{
write(addr, value & 0xFF, watch);
write(addr+1, value >> 8, 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);
+ void write16(u16 addr, u16 value, WatchpointControl watch = WATCH);
enum PortAccess
{