summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gamepock.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gamepock.h')
-rw-r--r--src/mame/includes/gamepock.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/includes/gamepock.h b/src/mame/includes/gamepock.h
index 9b842d6405a..77fe43e7924 100644
--- a/src/mame/includes/gamepock.h
+++ b/src/mame/includes/gamepock.h
@@ -6,11 +6,11 @@
#include "bus/generic/slot.h"
struct HD44102CH {
- UINT8 enabled;
- UINT8 start_page;
- UINT8 address;
- UINT8 y_inc;
- UINT8 ram[256]; /* There are actually 50 x 4 x 8 bits. This just makes addressing easier. */
+ uint8_t enabled;
+ uint8_t start_page;
+ uint8_t address;
+ uint8_t y_inc;
+ uint8_t ram[256]; /* There are actually 50 x 4 x 8 bits. This just makes addressing easier. */
};
class gamepock_state : public driver_device
@@ -25,11 +25,11 @@ public:
virtual void machine_reset() override;
- UINT8 m_port_a;
- UINT8 m_port_b;
+ uint8_t m_port_a;
+ uint8_t m_port_b;
HD44102CH m_hd44102ch[3];
- void hd44102ch_w( int which, int c_d, UINT8 data );
+ void hd44102ch_w( int which, int c_d, uint8_t data );
void hd44102ch_init( int which );
void lcd_update();
@@ -37,7 +37,7 @@ public:
DECLARE_READ8_MEMBER( port_b_r );
DECLARE_WRITE8_MEMBER( port_b_w );
DECLARE_READ8_MEMBER( port_c_r );
- UINT32 screen_update_gamepock(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_gamepock(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
required_device<speaker_sound_device> m_speaker;
required_device<generic_slot_device> m_cart;