Interrupts.h 219 B

12345678910111213
  1. #ifndef INCLUDE_INTERRUPTS_H
  2. #define INCLUDE_INTERRUPTS_H
  3. namespace Nspire
  4. {
  5. namespace Interrupts
  6. {
  7. void init();
  8. void off();
  9. void __attribute__((interrupt("IRQ"))) isr();
  10. }
  11. }
  12. #endif