Fix a printf statement in newdc/hw/sh4/sh4_mmr.cpp. Only specified the write address in the statement, however the data was also passed too.
This commit is contained in:
parent
26c2b86f8b
commit
8caf2b6b2e
|
@ -33,7 +33,7 @@ u32 sh4io_read_noacc(u32 addr)
|
|||
}
|
||||
void sh4io_write_noacc(u32 addr, u32 data)
|
||||
{
|
||||
printf("sh4io: Invalid write access @@ %08X\n",addr,data);
|
||||
printf("sh4io: Invalid write access @@ %08X %08X\n",addr,data);
|
||||
//verify(false);
|
||||
}
|
||||
void sh4io_write_const(u32 addr, u32 data)
|
||||
|
|
Loading…
Reference in New Issue