summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/cdi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/cdi.h')
-rw-r--r--src/mame/includes/cdi.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/includes/cdi.h b/src/mame/includes/cdi.h
index 2e7b13ada04..869f3c59355 100644
--- a/src/mame/includes/cdi.h
+++ b/src/mame/includes/cdi.h
@@ -72,8 +72,8 @@ public:
};
required_device<cpu_device> m_maincpu;
- required_shared_ptr<UINT16> m_planea;
- required_shared_ptr<UINT16> m_planeb;
+ required_shared_ptr<uint16_t> m_planea;
+ required_shared_ptr<uint16_t> m_planeb;
optional_ioport m_input1;
optional_ioport m_input2;
required_ioport m_mousex;
@@ -91,10 +91,10 @@ public:
INTERRUPT_GEN_MEMBER( mcu_frame );
- UINT8 m_servo_io_regs[0x20];
- UINT8 m_slave_io_regs[0x20];
+ uint8_t m_servo_io_regs[0x20];
+ uint8_t m_slave_io_regs[0x20];
- UINT8 m_timer_set;
+ uint8_t m_timer_set;
emu_timer *m_test_timer;
bitmap_rgb32 m_lcdbitmap;
@@ -121,8 +121,8 @@ public:
DECLARE_READ8_MEMBER(slave_io_r);
DECLARE_WRITE8_MEMBER(slave_io_w);
- UINT32 screen_update_cdimono1(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_cdimono1_lcd(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_cdimono1(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_cdimono1_lcd(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
};
/*----------- debug defines -----------*/