diff options
author | 2008-12-06 21:24:38 +0000 | |
---|---|---|
committer | 2008-12-06 21:24:38 +0000 | |
commit | 63f26b610b17d1b45bb5763385b443cf1313e8cb (patch) | |
tree | cf91450403a06b037c7d936b981c575566b3619a /src/emu/cpuexec.c | |
parent | c023001a86933dec224da8e201047f4e1a1e6e9c (diff) |
Pointer-ified the konami CPU core. Changed setlines callback to
pass a device. Updated and de-deprecat-ed the drivers that used
it. Fixed interrupt handling to follow more recent behavior
expectations (no PULSE_LINE on non-NMI lines).
Diffstat (limited to 'src/emu/cpuexec.c')
-rw-r--r-- | src/emu/cpuexec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/cpuexec.c b/src/emu/cpuexec.c index 279d084a7a8..c43dda32a1b 100644 --- a/src/emu/cpuexec.c +++ b/src/emu/cpuexec.c @@ -925,6 +925,7 @@ void cpu_set_input_line_and_vector(const device_config *device, int line, int st { switch (classdata->header.cputype) { + case CPU_KONAMI: case CPU_Z80: case CPU_Z180: case CPU_M68000: |