diff options
author | 2008-12-11 11:03:11 +0000 | |
---|---|---|
committer | 2008-12-11 11:03:11 +0000 | |
commit | 7eaa676d90817c0e4af7e7d0f04986cfa78bddcd (patch) | |
tree | 74554dc0161cefbd05faa64b2ca738d72a484fb7 /src/emu/cpu/dsp56k | |
parent | 9ff94341461ec0772aab68cfca373c3e2ff8d0cc (diff) |
Fixed compile error, and fixed crash when handling an exception when the
debugger is disabled.
Diffstat (limited to 'src/emu/cpu/dsp56k')
-rw-r--r-- | src/emu/cpu/dsp56k/dsp56k.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/cpu/dsp56k/dsp56k.c b/src/emu/cpu/dsp56k/dsp56k.c index 3c028e122f9..01fb0efe43a 100644 --- a/src/emu/cpu/dsp56k/dsp56k.c +++ b/src/emu/cpu/dsp56k/dsp56k.c @@ -273,10 +273,12 @@ INLINE void invalid_instruction(UINT32 op) /*************************************************************************** IRQ HANDLING ***************************************************************************/ +#ifdef UNUSED_FUNCTION static void check_irqs(void) { //logerror("Dsp56k check irqs\n"); } +#endif static void set_irq_line(int irqline, int state) { |