FDC37c6xx: Remove excess logging.

This commit is contained in:
OBattler
2025-08-03 16:24:15 +02:00
parent 633308be28
commit 4ce365c8f0

View File

@@ -221,13 +221,10 @@ fdc37c6xx_write(uint16_t port, uint8_t val, void *priv)
else else
dev->cur_reg = val; dev->cur_reg = val;
} else { } else {
if (dev->cur_reg > dev->max_reg) { if (dev->cur_reg > dev->max_reg)
pclog("[W] %02X = %02X\n", dev->cur_reg, val);
return; return;
}
valxor = val ^ dev->regs[dev->cur_reg]; valxor = val ^ dev->regs[dev->cur_reg];
pclog("[W] %02X = %02X\n", dev->cur_reg, val);
dev->regs[dev->cur_reg] = val; dev->regs[dev->cur_reg] = val;
switch (dev->cur_reg) { switch (dev->cur_reg) {