summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nasbus/avc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nasbus/avc.h')
-rw-r--r--src/devices/bus/nasbus/avc.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/nasbus/avc.h b/src/devices/bus/nasbus/avc.h
index 08b43b82d8d..d576a6a6c1d 100644
--- a/src/devices/bus/nasbus/avc.h
+++ b/src/devices/bus/nasbus/avc.h
@@ -26,7 +26,7 @@ class nascom_avc_device : public device_t, public device_nasbus_card_interface
{
public:
// construction/destruction
- nascom_avc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ nascom_avc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
MC6845_UPDATE_ROW(crtc_update_row);
DECLARE_WRITE8_MEMBER(control_w);
@@ -43,11 +43,11 @@ private:
required_device<mc6845_device> m_crtc;
required_device<palette_device> m_palette;
- std::vector<UINT8> m_r_ram;
- std::vector<UINT8> m_g_ram;
- std::vector<UINT8> m_b_ram;
+ std::vector<uint8_t> m_r_ram;
+ std::vector<uint8_t> m_g_ram;
+ std::vector<uint8_t> m_b_ram;
- UINT8 m_control;
+ uint8_t m_control;
};
// device type definition