Merge pull request #4832 from 86Box/tc1995

Remove a useless AND to 0x7f in the SB DSP reset routine in its port 0x0e (Read)
This commit is contained in:
Miran Grča
2024-09-15 22:47:24 +02:00
committed by GitHub

View File

@@ -1983,10 +1983,8 @@ sb_read(uint16_t a, void *priv)
else
ret = (dsp->sb_read_rp == dsp->sb_read_wp) ? 0x7f : 0xff;
}
if (dsp->state == DSP_S_RESET_WAIT) {
ret &= 0x7f;
if (dsp->state == DSP_S_RESET_WAIT)
dsp->state = DSP_S_NORMAL;
}
break;
case 0xF: /* 16-bit ack */
if (IS_NOT_ESS(dsp)) {