summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/coco_vhd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/coco_vhd.h')
-rw-r--r--src/mame/machine/coco_vhd.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/machine/coco_vhd.h b/src/mame/machine/coco_vhd.h
index 02c6ef1574e..87f9fa57147 100644
--- a/src/mame/machine/coco_vhd.h
+++ b/src/mame/machine/coco_vhd.h
@@ -23,7 +23,7 @@ class coco_vhd_image_device : public device_t,
{
public:
// construction/destruction
- coco_vhd_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ coco_vhd_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
virtual ~coco_vhd_image_device();
// image-level overrides
@@ -41,22 +41,22 @@ public:
// specific implementation
DECLARE_READ8_MEMBER(read) { return read(offset); }
DECLARE_WRITE8_MEMBER(write) { write(offset, data); }
- UINT8 read(offs_t offset);
- void write(offs_t offset, UINT8 data);
+ uint8_t read(offs_t offset);
+ void write(offs_t offset, uint8_t data);
protected:
// device-level overrides
virtual void device_config_complete() override;
virtual void device_start() override;
- void coco_vhd_readwrite(UINT8 data);
+ void coco_vhd_readwrite(uint8_t data);
private:
cpu_device * m_cpu;
address_space * m_cpu_space;
- UINT32 m_logical_record_number;
- UINT32 m_buffer_address;
- UINT8 m_status;
+ uint32_t m_logical_record_number;
+ uint32_t m_buffer_address;
+ uint8_t m_status;
};
// device type definition