summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ql/opd_basic_master.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ql/opd_basic_master.cpp')
-rw-r--r--src/devices/bus/ql/opd_basic_master.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/ql/opd_basic_master.cpp b/src/devices/bus/ql/opd_basic_master.cpp
index 58bc110f433..bf9cc893dce 100644
--- a/src/devices/bus/ql/opd_basic_master.cpp
+++ b/src/devices/bus/ql/opd_basic_master.cpp
@@ -46,7 +46,7 @@ const tiny_rom_entry *opd_basic_master_t::device_rom_region() const
// opd_basic_master_t - constructor
//-------------------------------------------------
-opd_basic_master_t::opd_basic_master_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+opd_basic_master_t::opd_basic_master_t(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, OPD_BASIC_MASTER, "OPD Basic Master", tag, owner, clock, "ql_opdbm", __FILE__),
device_ql_expansion_card_interface(mconfig, *this)
{
@@ -66,7 +66,7 @@ void opd_basic_master_t::device_start()
// read -
//-------------------------------------------------
-UINT8 opd_basic_master_t::read(address_space &space, offs_t offset, UINT8 data)
+uint8_t opd_basic_master_t::read(address_space &space, offs_t offset, uint8_t data)
{
return data;
}
@@ -76,6 +76,6 @@ UINT8 opd_basic_master_t::read(address_space &space, offs_t offset, UINT8 data)
// write -
//-------------------------------------------------
-void opd_basic_master_t::write(address_space &space, offs_t offset, UINT8 data)
+void opd_basic_master_t::write(address_space &space, offs_t offset, uint8_t data)
{
}