Make X24C02 only enter read/write state if I2C address matches; fixes SD Gundam Gaiden 2
This commit is contained in:
parent
c4dd4f5153
commit
38bb5b1f51
|
@ -178,7 +178,10 @@ static void x24c02_write(uint8 data) {
|
|||
x24c02_addr <<= 1;
|
||||
x24c02_addr |= sda;
|
||||
} else {
|
||||
if (sda) // READ COMMAND
|
||||
if ((x24c02_addr & 0x78) != 0x50) { // WRONG DEVICE ADDRESS
|
||||
x24c02_out = 1;
|
||||
x24c02_state = X24C0X_STANDBY;
|
||||
} else if (sda) // READ COMMAND
|
||||
x24c02_state = X24C0X_READ;
|
||||
else // WRITE COMMAND
|
||||
x24c02_state = X24C0X_WORD;
|
||||
|
|
Loading…
Reference in New Issue