summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes
diff options
context:
space:
mode:
author Wilbert Pol <wilbertpol@users.noreply.github.com>2015-08-11 20:49:01 +0200
committer Wilbert Pol <wilbertpol@users.noreply.github.com>2015-08-11 22:52:44 +0200
commit6471c767bac987a59dbe96469288088ae073ceac (patch)
tree359371ba0a0c6feedd56b172a7e773ba52aae398 /src/mess/includes
parent16500a8e22038cd636717bc8b984e031caedb5a2 (diff)
pce.c: reduce tagmap lookups (nw)
Diffstat (limited to 'src/mess/includes')
-rw-r--r--src/mess/includes/pce.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/mess/includes/pce.h b/src/mess/includes/pce.h
index eccd9b4a123..9d9a7d34b56 100644
--- a/src/mess/includes/pce.h
+++ b/src/mess/includes/pce.h
@@ -40,7 +40,11 @@ public:
m_user_ram(*this, "user_ram"),
m_huc6260(*this, "huc6260"),
m_cartslot(*this, "cartslot"),
- m_cd(*this, "pce_cd")
+ m_cd(*this, "pce_cd"),
+ m_joy(*this, "JOY_P"),
+ m_joy6b(*this, "JOY6B_P"),
+ m_joy_type(*this, "JOY_TYPE"),
+ m_a_card(*this, "A_CARD")
{ }
required_device<h6280_device> m_maincpu;
@@ -49,6 +53,10 @@ public:
optional_device<huc6260_device> m_huc6260;
required_device<pce_cart_slot_device> m_cartslot;
optional_device<pce_cd_device> m_cd;
+ required_ioport_array<5> m_joy;
+ required_ioport_array<5> m_joy6b;
+ required_ioport m_joy_type;
+ required_ioport m_a_card;
UINT8 m_io_port_options;
UINT8 m_sys3_card;