summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tsamurai.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/tsamurai.h')
-rw-r--r--src/mame/includes/tsamurai.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mame/includes/tsamurai.h b/src/mame/includes/tsamurai.h
index 1a43871fea0..62983b0fb4d 100644
--- a/src/mame/includes/tsamurai.h
+++ b/src/mame/includes/tsamurai.h
@@ -28,26 +28,26 @@ public:
tilemap_t *m_background;
tilemap_t *m_foreground;
-
+
//common
int m_flicker;
int m_textbank1;
int m_nmi_enabled;
-
+
// tsamurai and m660 specific
int m_bgcolor;
int m_sound_command1;
int m_sound_command2;
-
+
//m660 specific
int m_textbank2;
int m_sound_command3;
-
+
//vsgongf specific
int m_vsgongf_sound_nmi_enabled;
int m_vsgongf_color;
int m_key_count; //debug only
-
+
// common
DECLARE_WRITE8_MEMBER(nmi_enable_w);
DECLARE_WRITE8_MEMBER(coincounter_w);
@@ -68,27 +68,27 @@ public:
DECLARE_WRITE8_MEMBER(sound_command2_w);
DECLARE_READ8_MEMBER(sound_command1_r);
DECLARE_READ8_MEMBER(sound_command2_r);
-
+
// tsamurai specific
DECLARE_READ8_MEMBER(tsamurai_unknown_d803_r);
-
+
// m660 specific
DECLARE_WRITE8_MEMBER(m660_textbank2_w);
DECLARE_READ8_MEMBER(m660_unknown_d803_r);
DECLARE_WRITE8_MEMBER(m660_sound_command3_w);
DECLARE_READ8_MEMBER(m660_sound_command3_r);
-
+
// vsgongf specific
DECLARE_WRITE8_MEMBER(vsgongf_color_w);
DECLARE_WRITE8_MEMBER(vsgongf_sound_nmi_enable_w);
DECLARE_READ8_MEMBER(vsgongf_a006_r);
DECLARE_READ8_MEMBER(vsgongf_a100_r);
DECLARE_WRITE8_MEMBER(vsgongf_sound_command_w);
-
+
TILE_GET_INFO_MEMBER(get_bg_tile_info);
TILE_GET_INFO_MEMBER(get_fg_tile_info);
TILE_GET_INFO_MEMBER(get_vsgongf_tile_info);
-
+
virtual void machine_start();
DECLARE_MACHINE_START(m660);
DECLARE_MACHINE_START(tsamurai);
@@ -97,11 +97,11 @@ public:
DECLARE_VIDEO_START(m660);
DECLARE_VIDEO_START(tsamurai);
DECLARE_VIDEO_START(vsgongf);
-
+
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
UINT32 screen_update_vsgongf(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect );
-
+
INTERRUPT_GEN_MEMBER(interrupt);
INTERRUPT_GEN_MEMBER(vsgongf_sound_interrupt);
};