diff options
Diffstat (limited to 'src/mame/includes/pcw16.h')
-rw-r--r-- | src/mame/includes/pcw16.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/pcw16.h b/src/mame/includes/pcw16.h index 3f611f878d5..ca70412feea 100644 --- a/src/mame/includes/pcw16.h +++ b/src/mame/includes/pcw16.h @@ -119,15 +119,15 @@ public: void pcw16_keyboard_signal_byte_received(int data); void pcw16_refresh_ints(); void rtc_setup_max_days(); - UINT8 pcw16_read_mem(UINT8 bank, UINT16 offset); - void pcw16_write_mem(UINT8 bank, UINT16 offset, UINT8 data); - UINT8 read_bank_data(UINT8 type, UINT16 offset); - void write_bank_data(UINT8 type, UINT16 offset, UINT8 data); + uint8_t pcw16_read_mem(uint8_t bank, uint16_t offset); + void pcw16_write_mem(uint8_t bank, uint16_t offset, uint8_t data); + uint8_t read_bank_data(uint8_t type, uint16_t offset); + void write_bank_data(uint8_t type, uint16_t offset, uint8_t data); virtual void machine_start() override; virtual void machine_reset() override; virtual void video_start() override; DECLARE_PALETTE_INIT(pcw16); - UINT32 screen_update_pcw16(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_pcw16(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); TIMER_DEVICE_CALLBACK_MEMBER(pcw16_timer_callback); TIMER_DEVICE_CALLBACK_MEMBER(rtc_timer_callback); DECLARE_WRITE_LINE_MEMBER(pcw16_com_interrupt_1); @@ -137,7 +137,7 @@ public: void trigger_fdc_int(); DECLARE_WRITE_LINE_MEMBER( fdc_interrupt ); DECLARE_FLOPPY_FORMATS( floppy_formats ); - inline void pcw16_plot_pixel(bitmap_ind16 &bitmap, int x, int y, UINT32 color); + inline void pcw16_plot_pixel(bitmap_ind16 &bitmap, int x, int y, uint32_t color); void pcw16_vh_decode_mode0(bitmap_ind16 &bitmap, int x, int y, unsigned char byte); void pcw16_vh_decode_mode1(bitmap_ind16 &bitmap, int x, int y, unsigned char byte); void pcw16_vh_decode_mode2(bitmap_ind16 &bitmap, int x, int y, unsigned char byte); |