summaryrefslogtreecommitdiffstatshomepage
path: root/src/zexall
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2022-09-13 13:16:24 +0200
committer hap <happppp@users.noreply.github.com>2022-09-13 13:16:24 +0200
commitda7bdd575c9028a9eba26574e4af9d6474a63f94 (patch)
tree9d6d0f778b6c6a092afacd6450af3b5e6d2550f4 /src/zexall
parent511e01c1161ea9f14d0468c2a13b0e0fb630bdb4 (diff)
embargo: remove input tag lookups
Diffstat (limited to 'src/zexall')
-rw-r--r--src/zexall/zexall.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/zexall/zexall.cpp b/src/zexall/zexall.cpp
index 6bc3544a4d0..9be82b8c745 100644
--- a/src/zexall/zexall.cpp
+++ b/src/zexall/zexall.cpp
@@ -4,7 +4,7 @@
This is a simplified version of the zexall driver, merely as an example for a standalone
emulator build. Video terminal and user interface is removed. For full notes and proper
- emulation driver, see src/drivers/zexall.cpp.
+ emulation driver, see src/mame/homebrew/zexall.cpp.
******************************************************************************/
@@ -16,8 +16,8 @@
class zexall_state : public driver_device
{
public:
- zexall_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
+ zexall_state(const machine_config &mconfig, device_type type, const char *tag) :
+ driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_main_ram(*this, "main_ram")
{
@@ -32,6 +32,7 @@ public:
void z80_mem(address_map &map);
void zexall(machine_config &config);
+
private:
required_device<cpu_device> m_maincpu;
required_shared_ptr<uint8_t> m_main_ram;