summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/asic65.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/asic65.h')
-rw-r--r--src/mame/machine/asic65.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/mame/machine/asic65.h b/src/mame/machine/asic65.h
index 0f481e2b6c0..1a4111afc51 100644
--- a/src/mame/machine/asic65.h
+++ b/src/mame/machine/asic65.h
@@ -18,7 +18,7 @@
class asic65_device : public device_t
{
public:
- asic65_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ asic65_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// (static) configuration helpers
static void set_type(device_t &device, int type) { downcast<asic65_device &>(device).m_asic65_type = type; }
@@ -48,23 +48,23 @@ protected:
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
private:
- UINT8 m_asic65_type;
+ uint8_t m_asic65_type;
int m_command;
- UINT16 m_param[32];
- UINT16 m_yorigin;
- UINT8 m_param_index;
- UINT8 m_result_index;
- UINT8 m_reset_state;
- UINT8 m_last_bank;
+ uint16_t m_param[32];
+ uint16_t m_yorigin;
+ uint8_t m_param_index;
+ uint8_t m_result_index;
+ uint8_t m_reset_state;
+ uint8_t m_last_bank;
/* ROM-based interface states */
required_device<cpu_device> m_ourcpu;
- UINT8 m_tfull;
- UINT8 m_68full;
- UINT8 m_cmd;
- UINT8 m_xflg;
- UINT16 m_68data;
- UINT16 m_tdata;
+ uint8_t m_tfull;
+ uint8_t m_68full;
+ uint8_t m_cmd;
+ uint8_t m_xflg;
+ uint16_t m_68data;
+ uint16_t m_tdata;
FILE * m_log;
};