/*
* CPUレジスタの操作など、チップの固有性に依存するルーチン
*
* @author fenrir (M.Naruoka)
* @since 04/06/04
* @version 1.0
*/
inline void enableIRQ(){
asm volatile ("andc.b #0x7f,ccr");
}
inline void disableIRQ(){
asm volatile ("orc.b #0x80,ccr");
}
inline void sleep(){
asm volatile ("sleep");
}
inline void nop(){
asm volatile("nop");
}