summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/num9rev.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/num9rev.h')
-rw-r--r--src/devices/bus/isa/num9rev.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/isa/num9rev.h b/src/devices/bus/isa/num9rev.h
index 4fe64e19019..51f8efbd8f0 100644
--- a/src/devices/bus/isa/num9rev.h
+++ b/src/devices/bus/isa/num9rev.h
@@ -22,7 +22,7 @@ class isa8_number_9_rev_device :
{
public:
// construction/destruction
- isa8_number_9_rev_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ isa8_number_9_rev_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;
@@ -41,7 +41,7 @@ public:
DECLARE_READ8_MEMBER(read8);
DECLARE_WRITE8_MEMBER(write8);
- UINT32 screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
protected:
// device-level overrides
virtual void device_start() override;
@@ -49,11 +49,11 @@ protected:
private:
required_device<upd7220_device> m_upd7220;
required_device<palette_device> m_palette;
- std::vector<UINT8> m_ram;
- std::vector<UINT8> m_overlay;
+ std::vector<uint8_t> m_ram;
+ std::vector<uint8_t> m_overlay;
- UINT8 m_bank;
- UINT8 m_mode;
+ uint8_t m_bank;
+ uint8_t m_mode;
bool m_1024;
};