summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/pdc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/pdc.h')
-rw-r--r--src/devices/machine/pdc.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/devices/machine/pdc.h b/src/devices/machine/pdc.h
index 23cee250dcc..d4271fbe06d 100644
--- a/src/devices/machine/pdc.h
+++ b/src/devices/machine/pdc.h
@@ -35,7 +35,7 @@ class pdc_device : public device_t
{
public:
/* Constructor and Destructor */
- pdc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ pdc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
/* Optional information overrides */
virtual machine_config_constructor device_mconfig_additions() const override;
@@ -72,24 +72,24 @@ public:
DECLARE_FLOPPY_FORMATS( floppy_formats );
/* Main CPU accessible registers */
- UINT8 reg_p0;
- UINT8 reg_p1;
- UINT8 reg_p2;
- UINT8 reg_p3;
- UINT8 reg_p4;
- UINT8 reg_p5;
- UINT8 reg_p6;
- UINT8 reg_p7;
- UINT8 reg_p21;
- UINT8 reg_p38;
- UINT32 fdd_68k_dma_address; /* FDD <-> m68k DMA read/write address */
+ uint8_t reg_p0;
+ uint8_t reg_p1;
+ uint8_t reg_p2;
+ uint8_t reg_p3;
+ uint8_t reg_p4;
+ uint8_t reg_p5;
+ uint8_t reg_p6;
+ uint8_t reg_p7;
+ uint8_t reg_p21;
+ uint8_t reg_p38;
+ uint32_t fdd_68k_dma_address; /* FDD <-> m68k DMA read/write address */
protected:
/* Device-level overrides */
virtual void device_start() override;
virtual void device_reset() override;
/* Protected variables */
- //UINT32 fdd_68k_dma_address;
+ //uint32_t fdd_68k_dma_address;
bool b_fdc_irq;
/* Attached devices */
@@ -100,7 +100,7 @@ protected:
//required_device<floppy_image_device> m_floppy;
optional_device<hdc9224_device> m_hdc9224;
mfm_harddisk_device* m_harddisk;
- required_shared_ptr<UINT8> m_pdc_ram;
+ required_shared_ptr<uint8_t> m_pdc_ram;
/* Callbacks */
devcb_read8 m_m68k_r_cb;