summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/x76f100.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/x76f100.cpp')
-rw-r--r--src/devices/machine/x76f100.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/x76f100.cpp b/src/devices/machine/x76f100.cpp
index f254eed7ffc..7a03bf7bed1 100644
--- a/src/devices/machine/x76f100.cpp
+++ b/src/devices/machine/x76f100.cpp
@@ -32,7 +32,7 @@ inline void ATTR_PRINTF( 3, 4 ) x76f100_device::verboselog( int n_level, const c
// device type definition
const device_type X76F100 = &device_creator<x76f100_device>;
-x76f100_device::x76f100_device( const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock )
+x76f100_device::x76f100_device( const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock )
: device_t( mconfig, X76F100, "X76F100 Flash", tag, owner, clock, "x76f100", __FILE__ ),
device_nvram_interface(mconfig, *this),
m_region(*this, DEVICE_SELF),
@@ -112,7 +112,7 @@ WRITE_LINE_MEMBER( x76f100_device::write_rst )
m_rst = state;
}
-UINT8 *x76f100_device::password()
+uint8_t *x76f100_device::password()
{
if( ( m_command & 0xe1 ) == COMMAND_READ )
{
@@ -402,7 +402,7 @@ void x76f100_device::nvram_default()
}
else
{
- UINT8 *region = m_region->base();
+ uint8_t *region = m_region->base();
memcpy( m_response_to_reset, region, sizeof( m_response_to_reset )); region += sizeof( m_response_to_reset );
memcpy( m_write_password, region, sizeof( m_write_password )); region += sizeof( m_write_password );