Small printf bugfix

This commit is contained in:
Angelo Salese 2010-03-24 12:06:35 +00:00
parent 60b6853708
commit 70e0a16942

View File

@ -605,7 +605,7 @@ INLINE void CHECK_IRQ_LINES(m6800_state *cpustate)
{
if( cpustate->irq_state[M6800_IRQ_LINE] != CLEAR_LINE )
{ /* standard IRQ */
enter_interrupt(cpustate, "M6800 '%s' take IRQ1n",0xfff8);
enter_interrupt(cpustate, "M6800 '%s' take IRQ1\n",0xfff8);
if( cpustate->irq_callback )
(void)(*cpustate->irq_callback)(cpustate->device, M6800_IRQ_LINE);
}