1
0
Fork 0
forked from len0rd/rockbox

revert the previous one... = is ok and a touch faster

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15261 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2007-10-22 06:40:32 +00:00
parent 7e12bba0d2
commit e49ab427f0
2 changed files with 2 additions and 2 deletions

View file

@ -59,5 +59,5 @@ void TIMER1(void)
current_tick++;
IO_INTC_IRQ0 |= 1<<IRQ_TIMER1;
IO_INTC_IRQ0 = 1<<IRQ_TIMER1;
}

View file

@ -149,5 +149,5 @@ void UART1(void)
}
}
IO_INTC_IRQ0 |= (1<<IRQ_UART1);
IO_INTC_IRQ0 = (1<<IRQ_UART1);
}