diff options
Diffstat (limited to 'src/devices/machine/x76f100.cpp')
-rw-r--r-- | src/devices/machine/x76f100.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/machine/x76f100.cpp b/src/devices/machine/x76f100.cpp index 830a0e51448..f254eed7ffc 100644 --- a/src/devices/machine/x76f100.cpp +++ b/src/devices/machine/x76f100.cpp @@ -35,6 +35,7 @@ const device_type X76F100 = &device_creator<x76f100_device>; x76f100_device::x76f100_device( const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock ) : device_t( mconfig, X76F100, "X76F100 Flash", tag, owner, clock, "x76f100", __FILE__ ), device_nvram_interface(mconfig, *this), + m_region(*this, DEVICE_SELF), m_cs( 0 ), m_rst( 0 ), m_scl( 0 ), @@ -391,7 +392,7 @@ void x76f100_device::nvram_default() int expected_size = sizeof( m_response_to_reset ) + sizeof( m_write_password ) + sizeof( m_read_password ) + sizeof( m_data ); - if( !m_region ) + if (!m_region.found()) { logerror( "x76f100(%s) region not found\n", tag() ); } |