diff options
author | 2012-09-12 03:35:06 +0000 | |
---|---|---|
committer | 2012-09-12 03:35:06 +0000 | |
commit | 0ef1e6deb4923b27f4c1d95825e453f565b129a3 (patch) | |
tree | aa3054f8acec99e6e5442359c8adcd88a3283bab /src/mess/machine/sym1.c | |
parent | cd5dcbacd973e855f0b4f5c522334279ff63930b (diff) |
Closeout on old macros. Retired cputag_set_input_line
and cputag_set_input_line_and_vector, replacing them
with machine.device("tag")->execute().set_input_line[_and_vector].
[Aaron Giles]
Diffstat (limited to 'src/mess/machine/sym1.c')
-rw-r--r-- | src/mess/machine/sym1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/sym1.c b/src/mess/machine/sym1.c index fd1efcc24ca..35bf224a2ac 100644 --- a/src/mess/machine/sym1.c +++ b/src/mess/machine/sym1.c @@ -174,7 +174,7 @@ const ttl74145_interface sym1_ttl74145_intf = static void sym1_irq(device_t *device, int level) { - cputag_set_input_line(device->machine(), "maincpu", M6502_IRQ_LINE, level); + device->machine().device("maincpu")->execute().set_input_line(M6502_IRQ_LINE, level); } |