summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/cbuster.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/cbuster.h')
-rw-r--r--src/mame/includes/cbuster.h47
1 files changed, 18 insertions, 29 deletions
diff --git a/src/mame/includes/cbuster.h b/src/mame/includes/cbuster.h
index 8d59795860d..4cc7d0b74de 100644
--- a/src/mame/includes/cbuster.h
+++ b/src/mame/includes/cbuster.h
@@ -7,6 +7,7 @@
*************************************************************************/
#include "machine/gen_latch.h"
+#include "video/bufsprite.h"
#include "video/decospr.h"
#include "video/deco16ic.h"
@@ -15,48 +16,36 @@ class cbuster_state : public driver_device
public:
cbuster_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_ram(*this, "ram"),
- m_pf1_rowscroll(*this, "pf1_rowscroll"),
- m_pf2_rowscroll(*this, "pf2_rowscroll"),
- m_pf3_rowscroll(*this, "pf3_rowscroll"),
- m_pf4_rowscroll(*this, "pf4_rowscroll"),
- m_spriteram16(*this, "spriteram16"),
- m_paletteram(*this, "palette"),
- m_paletteram_ext(*this, "palette_ext"),
- m_sprgen(*this, "spritegen"),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
- m_deco_tilegen1(*this, "tilegen1"),
- m_deco_tilegen2(*this, "tilegen2"),
+ m_deco_tilegen(*this, "tilegen%u", 1),
m_palette(*this, "palette"),
- m_soundlatch(*this, "soundlatch")
+ m_spriteram(*this, "spriteram"),
+ m_soundlatch(*this, "soundlatch"),
+ m_sprgen(*this, "spritegen"),
+ m_pf_rowscroll(*this, "pf%u_rowscroll", 1),
+ m_paletteram(*this, "palette"),
+ m_paletteram_ext(*this, "palette_ext")
{ }
+
+ /* devices */
+ required_device<cpu_device> m_maincpu;
+ required_device<cpu_device> m_audiocpu;
+ required_device_array<deco16ic_device, 2> m_deco_tilegen;
+ required_device<palette_device> m_palette;
+ required_device<buffered_spriteram16_device> m_spriteram;
+ required_device<generic_latch_8_device> m_soundlatch;
+ required_device<decospr_device> m_sprgen;
/* memory pointers */
- required_shared_ptr<uint16_t> m_ram;
- required_shared_ptr<uint16_t> m_pf1_rowscroll;
- required_shared_ptr<uint16_t> m_pf2_rowscroll;
- required_shared_ptr<uint16_t> m_pf3_rowscroll;
- required_shared_ptr<uint16_t> m_pf4_rowscroll;
- required_shared_ptr<uint16_t> m_spriteram16;
+ required_shared_ptr_array<uint16_t, 4> m_pf_rowscroll;
required_shared_ptr<uint16_t> m_paletteram;
required_shared_ptr<uint16_t> m_paletteram_ext;
- optional_device<decospr_device> m_sprgen;
-
- uint16_t m_spriteram16_buffer[0x400];
/* misc */
uint16_t m_prot;
int m_pri;
- /* devices */
- required_device<cpu_device> m_maincpu;
- required_device<cpu_device> m_audiocpu;
- required_device<deco16ic_device> m_deco_tilegen1;
- required_device<deco16ic_device> m_deco_tilegen2;
- required_device<palette_device> m_palette;
- required_device<generic_latch_8_device> m_soundlatch;
-
DECLARE_WRITE16_MEMBER(twocrude_control_w);
DECLARE_READ16_MEMBER(twocrude_control_r);
DECLARE_DRIVER_INIT(twocrude);