summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/atarifdc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/atarifdc.h')
-rw-r--r--src/mame/machine/atarifdc.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/machine/atarifdc.h b/src/mame/machine/atarifdc.h
index 355dea59aad..f7d8045e207 100644
--- a/src/mame/machine/atarifdc.h
+++ b/src/mame/machine/atarifdc.h
@@ -13,7 +13,7 @@
class atari_fdc_device : public device_t
{
public:
- atari_fdc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ atari_fdc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
DECLARE_READ8_MEMBER( serin_r );
DECLARE_WRITE8_MEMBER( serout_w );
@@ -29,14 +29,14 @@ private:
void clr_serout(int expect_data);
void add_serout(int expect_data);
void clr_serin(int ser_delay);
- void add_serin(UINT8 data, int with_checksum);
+ void add_serin(uint8_t data, int with_checksum);
void a800_serial_command();
void a800_serial_write();
legacy_floppy_image_device *atari_floppy_get_device_child(int drive);
struct atari_drive
{
- std::unique_ptr<UINT8[]> image; /* alloc'd image */
+ std::unique_ptr<uint8_t[]> image; /* alloc'd image */
int type; /* type of image (XFD, ATR, DSK) */
int mode; /* 0 read only, != 0 read/write */
int density; /* 0 SD, 1 MD, 2 DD */
@@ -51,14 +51,14 @@ private:
int m_serout_count;
int m_serout_offs;
- UINT8 m_serout_buff[512];
- UINT8 m_serout_chksum;
+ uint8_t m_serout_buff[512];
+ uint8_t m_serout_chksum;
// int m_serout_delay;
int m_serin_count;
int m_serin_offs;
- UINT8 m_serin_buff[512];
- UINT8 m_serin_chksum;
+ uint8_t m_serin_buff[512];
+ uint8_t m_serin_chksum;
int m_serin_delay;
atari_drive m_drv[4];