summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/lvcards.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/lvcards.h')
-rw-r--r--src/mame/includes/lvcards.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/mame/includes/lvcards.h b/src/mame/includes/lvcards.h
index 90e553d57c1..1f5e15f91f9 100644
--- a/src/mame/includes/lvcards.h
+++ b/src/mame/includes/lvcards.h
@@ -16,10 +16,14 @@ public:
m_maincpu(*this, "maincpu"),
m_videoram(*this, "videoram"),
m_colorram(*this, "colorram"),
- m_gfxdecode(*this, "gfxdecode")
+ m_gfxdecode(*this, "gfxdecode"),
+ m_decrypted_opcodes(*this, "decrypted_opcodes")
{ }
void lvcards(machine_config &config);
+ void lvcardsa(machine_config &config);
+
+ void init_lvcardsa();
protected:
virtual void video_start() override;
@@ -32,13 +36,15 @@ protected:
private:
required_shared_ptr<uint8_t> m_videoram;
required_shared_ptr<uint8_t> m_colorram;
+ required_device<gfxdecode_device> m_gfxdecode;
+ optional_shared_ptr<uint8_t> m_decrypted_opcodes;
tilemap_t *m_bg_tilemap;
TILE_GET_INFO_MEMBER(get_bg_tile_info);
void lvcards_palette(palette_device &palette) const;
uint32_t screen_update_lvcards(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- required_device<gfxdecode_device> m_gfxdecode;
void lvcards_io_map(address_map &map);
void lvcards_map(address_map &map);
+ void lvcardsa_decrypted_opcodes_map(address_map &map);
};