diff options
author | 2012-09-12 06:07:51 +0000 | |
---|---|---|
committer | 2012-09-12 06:07:51 +0000 | |
commit | 17e66e39fd2aeb6e083a8567d281df9235b9f2f4 (patch) | |
tree | a34dfe5941829bc939167c207f65b5cf7f57078f /src/mess/machine/c64_cpm.c | |
parent | 0ef1e6deb4923b27f4c1d95825e453f565b129a3 (diff) |
Clear out remaining global inlines in diexec.h.
Diffstat (limited to 'src/mess/machine/c64_cpm.c')
-rw-r--r-- | src/mess/machine/c64_cpm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/machine/c64_cpm.c b/src/mess/machine/c64_cpm.c index 197d9f3e4ff..937f4ded1bd 100644 --- a/src/mess/machine/c64_cpm.c +++ b/src/mess/machine/c64_cpm.c @@ -89,8 +89,8 @@ inline void c64_cpm_cartridge_device::update_signals() { if (m_enabled) { - device_set_input_line(m_maincpu, INPUT_LINE_HALT, CLEAR_LINE); - device_set_input_line(machine().firstcpu, INPUT_LINE_HALT, ASSERT_LINE); + m_maincpu->set_input_line(INPUT_LINE_HALT, CLEAR_LINE); + machine().firstcpu->set_input_line(INPUT_LINE_HALT, ASSERT_LINE); if (m_reset) { @@ -101,8 +101,8 @@ inline void c64_cpm_cartridge_device::update_signals() } else { - device_set_input_line(m_maincpu, INPUT_LINE_HALT, ASSERT_LINE); - device_set_input_line(machine().firstcpu, INPUT_LINE_HALT, CLEAR_LINE); + m_maincpu->set_input_line(INPUT_LINE_HALT, ASSERT_LINE); + machine().firstcpu->set_input_line(INPUT_LINE_HALT, CLEAR_LINE); } /* |