summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/at.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/at.h')
-rw-r--r--src/mame/machine/at.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/machine/at.h b/src/mame/machine/at.h
index 98f22c0ce2d..12d6895197c 100644
--- a/src/mame/machine/at.h
+++ b/src/mame/machine/at.h
@@ -16,7 +16,7 @@
class at_mb_device : public device_t
{
public:
- at_mb_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ at_mb_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
DECLARE_ADDRESS_MAP(map, 16);
@@ -59,14 +59,14 @@ public:
DECLARE_READ8_MEMBER(dma_read_word);
DECLARE_WRITE8_MEMBER(dma_write_word);
- UINT32 a20_286(bool state);
+ uint32_t a20_286(bool state);
protected:
void device_start() override;
void device_reset() override;
virtual machine_config_constructor device_mconfig_additions() const override;
private:
void set_dma_channel(int channel, int state);
- void speaker_set_spkrdata(UINT8 data);
+ void speaker_set_spkrdata(uint8_t data);
required_device<cpu_device> m_maincpu;
required_device<isa16_device> m_isabus;
@@ -76,16 +76,16 @@ private:
required_device<pit8254_device> m_pit8254;
required_device<speaker_sound_device> m_speaker;
required_device<mc146818_device> m_mc146818;
- UINT8 m_at_spkrdata;
- UINT8 m_pit_out2;
+ uint8_t m_at_spkrdata;
+ uint8_t m_pit_out2;
int m_dma_channel;
bool m_cur_eop;
- UINT8 m_dma_offset[2][4];
- UINT8 m_at_pages[0x10];
- UINT16 m_dma_high_byte;
- UINT8 m_at_speaker;
- UINT8 m_channel_check;
- UINT8 m_nmi_enabled;
+ uint8_t m_dma_offset[2][4];
+ uint8_t m_at_pages[0x10];
+ uint16_t m_dma_high_byte;
+ uint8_t m_at_speaker;
+ uint8_t m_channel_check;
+ uint8_t m_nmi_enabled;
};
extern const device_type AT_MB;