summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/dl1416.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
commitddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch)
treea70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/devices/video/dl1416.h
parent333bff8de64dfaeb98134000412796b4fdef970b (diff)
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8 also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/devices/video/dl1416.h')
-rw-r--r--src/devices/video/dl1416.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/video/dl1416.h b/src/devices/video/dl1416.h
index e3526bd95be..5eb084bfddb 100644
--- a/src/devices/video/dl1416.h
+++ b/src/devices/video/dl1416.h
@@ -31,7 +31,7 @@
class dl1416_device : public device_t
{
public:
- dl1416_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
+ dl1416_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source);
~dl1416_device() {}
template<class _Object> static devcb_base &set_update_handler(device_t &device, _Object object) { return downcast<dl1416_device &>(device).m_update.set_callback(object); }
@@ -54,14 +54,14 @@ private:
int m_cursor_enable;
devcb_write16 m_update;
- UINT16 m_digit_ram[4]; // holds the digit code for each position
- UINT8 m_cursor_state[4]; // holds the cursor state for each position, 0=off, 1=on
+ uint16_t m_digit_ram[4]; // holds the digit code for each position
+ uint8_t m_cursor_state[4]; // holds the cursor state for each position, 0=off, 1=on
};
class dl1416b_device : public dl1416_device
{
public:
- dl1416b_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ dl1416b_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
extern const device_type DL1416B;
@@ -69,7 +69,7 @@ extern const device_type DL1416B;
class dl1416t_device : public dl1416_device
{
public:
- dl1416t_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ dl1416t_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
extern const device_type DL1416T;