diff options
author | 2013-04-10 11:31:17 +0000 | |
---|---|---|
committer | 2013-04-10 11:31:17 +0000 | |
commit | 10d146a6be20998acfca4e5533c8fe35f50ada9e (patch) | |
tree | 963d8ffd698ed08017935ac958a333e7b8a20290 /src/mess/includes/c65.h | |
parent | a77e9c9f62b001c1519f8a3262524c5347f78f36 (diff) |
changed machine().device("maincpu") with m_maincpu in mess tree part (nw)
Diffstat (limited to 'src/mess/includes/c65.h')
-rw-r--r-- | src/mess/includes/c65.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mess/includes/c65.h b/src/mess/includes/c65.h index 560ab18fccb..4233573841c 100644 --- a/src/mess/includes/c65.h +++ b/src/mess/includes/c65.h @@ -64,8 +64,8 @@ public: m_kernal(*this, "kernal"), m_c65_chargen(*this, "c65_chargen"), m_interface(*this, "interface"), - m_roml_writable(0) - { } + m_roml_writable(0), + m_maincpu(*this, "maincpu") { } optional_device<cbm_iec_device> m_iec; @@ -142,6 +142,7 @@ public: DECLARE_DEVICE_IMAGE_LOAD_MEMBER( c64_cart ); DECLARE_DEVICE_IMAGE_UNLOAD_MEMBER( c64_cart ); DECLARE_WRITE_LINE_MEMBER(c65_cia0_interrupt); + required_device<cpu_device> m_maincpu; }; |