This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Interrupt on Nuvoton NUC100LD2DN

Hi, I'm newbie on keil & I'm trying learn ARM Cortex-M0 from Nuvoton. I confuse how to use interrupt on timer funtion. How i can get interrupt from overflow? I'm familiar before with AVR, on atmel studio for interrupt I just call function

 ISR(TIMER1_OVF_vect )
{
  PORTB |= _BV(0);
  reti();
}

And how about nuvoton?
Help me please..