Skip to content

Commit 1588f0b

Browse files
committed
remove unnecessary printfs
1 parent 6f0b07e commit 1588f0b

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/NDS.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3363,7 +3363,6 @@ void NDS::ARM9IOWrite16(u32 addr, u16 val)
33633363
IPCSync7 |= ((val & 0x0F00) >> 8);
33643364
IPCSync9 &= 0xB0FF;
33653365
IPCSync9 |= (val & 0x4F00);
3366-
printf("ARM9 IPCSYNC=%04X (%04X|%04X) @ %08X\n", val, IPCSync9, IPCSync7, ARM9.R[15]);
33673366
if ((val & 0x2000) && (IPCSync7 & 0x4000))
33683367
{
33693368
SetIRQ(1, IRQ_IPCSync);
@@ -4152,7 +4151,6 @@ void NDS::ARM7IOWrite16(u32 addr, u16 val)
41524151
IPCSync9 |= ((val & 0x0F00) >> 8);
41534152
IPCSync7 &= 0xB0FF;
41544153
IPCSync7 |= (val & 0x4F00);
4155-
printf("ARM7 IPCSYNC=%04X (%04X|%04X) @ %08X\n", val, IPCSync9, IPCSync7, ARM7.R[15]);
41564154
if ((val & 0x2000) && (IPCSync9 & 0x4000))
41574155
{
41584156
SetIRQ(0, IRQ_IPCSync);

0 commit comments

Comments
 (0)