mirror of
https://github.com/holub/mame
synced 2025-04-25 17:56:43 +03:00
Revert "Possibly controversial i2cmem change, please lemme know if something breaks (nw)"
Not to smf's standards, and I that point I just can't be bothered anymore.
This commit is contained in:
parent
0e448ba32a
commit
84626917fe
@ -344,13 +344,7 @@ WRITE_LINE_MEMBER( i2cmem_device::write_scl )
|
||||
switch( m_state )
|
||||
{
|
||||
case STATE_DEVSEL:
|
||||
if( m_shift & 1 )
|
||||
{
|
||||
verboselog( this, 1, "switching to read\n");
|
||||
m_devsel &= 0x0e;
|
||||
m_devsel |= (m_shift & 0xf1);
|
||||
}
|
||||
else m_devsel = m_shift;
|
||||
m_devsel = m_shift;
|
||||
|
||||
if( !select_device() )
|
||||
{
|
||||
@ -513,13 +507,6 @@ int i2cmem_device::select_device()
|
||||
int device = ( m_slave_address & 0xf0 ) | ( m_e2 << 3 ) | ( m_e1 << 2 ) | ( m_e0 << 1 );
|
||||
int mask = DEVSEL_ADDRESS & ~( address_mask() >> 7 );
|
||||
|
||||
if( m_devsel == 0 )
|
||||
{
|
||||
verboselog( this, 2, "acknowledging global call\n");
|
||||
m_sdar = 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
if( ( m_devsel & mask ) == ( device & mask ) )
|
||||
{
|
||||
return 1;
|
||||
|
Loading…
Reference in New Issue
Block a user