diff options
author | 2008-03-01 16:54:52 +0000 | |
---|---|---|
committer | 2008-03-01 16:54:52 +0000 | |
commit | 492612b6c9046677abeaf7938619b8f8c4158ee9 (patch) | |
tree | a3baa2f4f1eb65ae8b01adcb2f962a0a6db0b3da /src/emu/cpu/h6280 | |
parent | 6dc290df31f911e781a29f9a36575562e6bd435c (diff) |
Various clean ups:
* remove more unreachable code
* identify more functions not being used
* Changed a number of global functions to being static
Diffstat (limited to 'src/emu/cpu/h6280')
-rw-r--r-- | src/emu/cpu/h6280/h6280.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/h6280/h6280.c b/src/emu/cpu/h6280/h6280.c index c8dbf77e55d..7b1f5015426 100644 --- a/src/emu/cpu/h6280/h6280.c +++ b/src/emu/cpu/h6280/h6280.c @@ -333,7 +333,7 @@ READ8_HANDLER( H6280_irq_status_r ) if(h6280.irq_state[1]!=CLEAR_LINE) status|=1; /* IRQ 2 */ if(h6280.irq_state[0]!=CLEAR_LINE) status|=2; /* IRQ 1 */ if(h6280.irq_state[2]!=CLEAR_LINE) status|=4; /* TIMER */ - return status|(h6280.io_buffer&(~H6280_IRQ_MASK));break; + return status|(h6280.io_buffer&(~H6280_IRQ_MASK)); } case 2: return h6280.irq_mask|(h6280.io_buffer&(~H6280_IRQ_MASK));break; } |