summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/mbee.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mbee.h')
-rw-r--r--src/mame/includes/mbee.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/mame/includes/mbee.h b/src/mame/includes/mbee.h
index f92ee66477b..f23093fccca 100644
--- a/src/mame/includes/mbee.h
+++ b/src/mame/includes/mbee.h
@@ -105,7 +105,7 @@ public:
DECLARE_MACHINE_RESET(mbee128);
DECLARE_MACHINE_RESET(mbee256);
DECLARE_MACHINE_RESET(mbeett);
- UINT32 screen_update_mbee(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_mbee(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
TIMER_CALLBACK_MEMBER(timer_newkb);
DECLARE_QUICKLOAD_LOAD_MEMBER(mbee);
DECLARE_QUICKLOAD_LOAD_MEMBER(mbee_z80bin);
@@ -117,33 +117,33 @@ public:
required_device<palette_device> m_palette;
private:
- UINT8 *m_p_videoram;
- UINT8 *m_p_gfxram;
- UINT8 *m_p_colorram;
- UINT8 *m_p_attribram;
+ uint8_t *m_p_videoram;
+ uint8_t *m_p_gfxram;
+ uint8_t *m_p_colorram;
+ uint8_t *m_p_attribram;
bool m_is_premium;
bool m_has_oldkb;
size_t m_size;
bool m_b7_rtc;
bool m_b7_vs;
bool m_b2;
- UINT8 m_framecnt;
- UINT8 m_08;
- UINT8 m_0a;
- UINT8 m_0b;
- UINT8 m_1c;
- UINT8 m_sy6545_cursor[16];
- UINT8 m_mbee256_was_pressed[15];
- UINT8 m_mbee256_q[20];
- UINT8 m_mbee256_q_pos;
- UINT8 m_sy6545_reg[32];
- UINT8 m_sy6545_ind;
- UINT8 m_fdc_rq;
- UINT8 m_bank_array[33];
- void setup_banks(UINT8 data, bool first_time, UINT8 b_mask);
+ uint8_t m_framecnt;
+ uint8_t m_08;
+ uint8_t m_0a;
+ uint8_t m_0b;
+ uint8_t m_1c;
+ uint8_t m_sy6545_cursor[16];
+ uint8_t m_mbee256_was_pressed[15];
+ uint8_t m_mbee256_q[20];
+ uint8_t m_mbee256_q_pos;
+ uint8_t m_sy6545_reg[32];
+ uint8_t m_sy6545_ind;
+ uint8_t m_fdc_rq;
+ uint8_t m_bank_array[33];
+ void setup_banks(uint8_t data, bool first_time, uint8_t b_mask);
void sy6545_cursor_configure();
- void oldkb_scan(UINT16 param);
- void oldkb_matrix_r(UINT16 offs);
+ void oldkb_scan(uint16_t param);
+ void oldkb_matrix_r(uint16_t offs);
void machine_reset_common();
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
required_device<cpu_device> m_maincpu;