summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/a2bus/pc_xporter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/a2bus/pc_xporter.cpp')
-rw-r--r--src/devices/bus/a2bus/pc_xporter.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/bus/a2bus/pc_xporter.cpp b/src/devices/bus/a2bus/pc_xporter.cpp
index ec40e08a1aa..08533d22f60 100644
--- a/src/devices/bus/a2bus/pc_xporter.cpp
+++ b/src/devices/bus/a2bus/pc_xporter.cpp
@@ -181,7 +181,7 @@ machine_config_constructor a2bus_pcxporter_device::device_mconfig_additions() co
// LIVE DEVICE
//**************************************************************************
-a2bus_pcxporter_device::a2bus_pcxporter_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) :
+a2bus_pcxporter_device::a2bus_pcxporter_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source) :
device_t(mconfig, type, name, tag, owner, clock, shortname, source),
device_a2bus_card_interface(mconfig, *this),
m_v30(*this, "v30"),
@@ -194,7 +194,7 @@ a2bus_pcxporter_device::a2bus_pcxporter_device(const machine_config &mconfig, de
{
}
-a2bus_pcxporter_device::a2bus_pcxporter_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+a2bus_pcxporter_device::a2bus_pcxporter_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, A2BUS_PCXPORTER, "Applied Engineering PC Transporter", tag, owner, clock, "a2pcxport", __FILE__),
device_a2bus_card_interface(mconfig, *this),
m_v30(*this, "v30"),
@@ -243,7 +243,7 @@ void a2bus_pcxporter_device::device_reset()
read_c0nx - called for reads from this card's c0nx space
-------------------------------------------------*/
-UINT8 a2bus_pcxporter_device::read_c0nx(address_space &space, UINT8 offset)
+uint8_t a2bus_pcxporter_device::read_c0nx(address_space &space, uint8_t offset)
{
switch (offset)
{
@@ -260,7 +260,7 @@ UINT8 a2bus_pcxporter_device::read_c0nx(address_space &space, UINT8 offset)
write_c0nx - called for writes to this card's c0nx space
-------------------------------------------------*/
-void a2bus_pcxporter_device::write_c0nx(address_space &space, UINT8 offset, UINT8 data)
+void a2bus_pcxporter_device::write_c0nx(address_space &space, uint8_t offset, uint8_t data)
{
switch (offset)
{
@@ -274,13 +274,13 @@ void a2bus_pcxporter_device::write_c0nx(address_space &space, UINT8 offset, UINT
read_cnxx - called for reads from this card's cnxx space
-------------------------------------------------*/
-UINT8 a2bus_pcxporter_device::read_cnxx(address_space &space, UINT8 offset)
+uint8_t a2bus_pcxporter_device::read_cnxx(address_space &space, uint8_t offset)
{
// read only to trigger C800?
return 0xff;
}
-void a2bus_pcxporter_device::write_cnxx(address_space &space, UINT8 offset, UINT8 data)
+void a2bus_pcxporter_device::write_cnxx(address_space &space, uint8_t offset, uint8_t data)
{
printf("Write %02x to cn%02x (PC=%x)\n", data, offset, space.device().safe_pc());
}
@@ -289,7 +289,7 @@ void a2bus_pcxporter_device::write_cnxx(address_space &space, UINT8 offset, UINT
read_c800 - called for reads from this card's c800 space
-------------------------------------------------*/
-UINT8 a2bus_pcxporter_device::read_c800(address_space &space, UINT16 offset)
+uint8_t a2bus_pcxporter_device::read_c800(address_space &space, uint16_t offset)
{
// printf("Read C800 at %x\n", offset + 0xc800);
@@ -299,7 +299,7 @@ UINT8 a2bus_pcxporter_device::read_c800(address_space &space, UINT16 offset)
}
else
{
- UINT8 rv;
+ uint8_t rv;
switch (offset)
{
@@ -337,7 +337,7 @@ UINT8 a2bus_pcxporter_device::read_c800(address_space &space, UINT16 offset)
/*-------------------------------------------------
write_c800 - called for writes to this card's c800 space
-------------------------------------------------*/
-void a2bus_pcxporter_device::write_c800(address_space &space, UINT16 offset, UINT8 data)
+void a2bus_pcxporter_device::write_c800(address_space &space, uint16_t offset, uint8_t data)
{
if (offset < 0x400)
{