summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/esqlcd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/esqlcd.h')
-rw-r--r--src/mame/machine/esqlcd.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/machine/esqlcd.h b/src/mame/machine/esqlcd.h
index 0fa306f5161..eb5aaaa648c 100644
--- a/src/mame/machine/esqlcd.h
+++ b/src/mame/machine/esqlcd.h
@@ -17,7 +17,7 @@
class esq2x16_sq1_t : public esqvfd_t {
public:
- esq2x16_sq1_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ esq2x16_sq1_t(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
virtual void write_char(int data) override;
virtual void update_display() override;
@@ -26,15 +26,15 @@ public:
void lcd_reset();
void page_reset();
- char RotateLcdChar(UINT8 lcdChar, int charRow);
+ char RotateLcdChar(uint8_t lcdChar, int charRow);
protected:
virtual machine_config_constructor device_mconfig_additions() const override;
- UINT8 m_lcdpg[4][32];
+ uint8_t m_lcdpg[4][32];
int m_lcdPage;
int m_lcdPos,m_lcdSavedPos;
- UINT8 m_leds[16];
- UINT8 m_ledsDirty[16];
+ uint8_t m_leds[16];
+ uint8_t m_ledsDirty[16];
private:
int m_LcdCommand;