summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/rf5c296.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/rf5c296.h')
-rw-r--r--src/devices/machine/rf5c296.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/rf5c296.h b/src/devices/machine/rf5c296.h
index faab5e738fb..2f9037b240c 100644
--- a/src/devices/machine/rf5c296.h
+++ b/src/devices/machine/rf5c296.h
@@ -13,7 +13,7 @@
class rf5c296_device : public device_t
{
public:
- rf5c296_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ rf5c296_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// static configuration helpers
static void set_pccard_name(device_t &device, const char *name) { downcast<rf5c296_device &>(device).m_pccard_name = name; }
@@ -28,8 +28,8 @@ protected:
virtual void device_start() override;
private:
- void reg_w(ATTR_UNUSED UINT8 reg, UINT8 data);
- UINT8 reg_r(ATTR_UNUSED UINT8 reg);
+ void reg_w(ATTR_UNUSED uint8_t reg, uint8_t data);
+ uint8_t reg_r(ATTR_UNUSED uint8_t reg);
unsigned char m_rf5c296_reg;
pccard_slot_device *m_pccard;