diff options
Diffstat (limited to 'src/mess/includes/spectrum.h')
-rw-r--r-- | src/mess/includes/spectrum.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/mess/includes/spectrum.h b/src/mess/includes/spectrum.h index c06f582ba88..bd8d29ee101 100644 --- a/src/mess/includes/spectrum.h +++ b/src/mess/includes/spectrum.h @@ -119,6 +119,10 @@ public: DECLARE_MACHINE_RESET(spectrum_plus3); DECLARE_MACHINE_RESET(ts2068); DECLARE_VIDEO_START(ts2068); + UINT32 screen_update_spectrum(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + UINT32 screen_update_tc2048(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + UINT32 screen_update_ts2068(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + void screen_eof_spectrum(screen_device &screen, bool state); }; @@ -152,8 +156,8 @@ void ts2068_update_memory(running_machine &machine); -SCREEN_UPDATE_IND16( spectrum ); -SCREEN_VBLANK( spectrum ); + + void spectrum_border_force_redraw (running_machine &machine); void spectrum_border_set_last_color (running_machine &machine, int NewColor); @@ -173,8 +177,8 @@ EVENT_LIST_ITEM *spectrum_EventList_GetFirstItem(running_machine &machine); /*----------- defined in video/timex.c -----------*/ -SCREEN_UPDATE_IND16( ts2068 ); -SCREEN_UPDATE_IND16( tc2048 ); + + #endif /* __SPECTRUM_H__ */ |