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:
parent
7e12bba0d2
commit
e49ab427f0
2 changed files with 2 additions and 2 deletions
|
@ -59,5 +59,5 @@ void TIMER1(void)
|
||||||
|
|
||||||
current_tick++;
|
current_tick++;
|
||||||
|
|
||||||
IO_INTC_IRQ0 |= 1<<IRQ_TIMER1;
|
IO_INTC_IRQ0 = 1<<IRQ_TIMER1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -149,5 +149,5 @@ void UART1(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IO_INTC_IRQ0 |= (1<<IRQ_UART1);
|
IO_INTC_IRQ0 = (1<<IRQ_UART1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue