Files
super6502/sw/irq.c
Byron Lathi fe45331e7a Add interrupt handlers and redo vector locations
Most of these are taken from
https://cc65.github.io/doc/customizing.html, but modified to suit this
setup.
2022-03-14 11:54:43 -05:00

7 lines
113 B
C

// This is defined in main.c
void puts(const char* s);
void handle_irq() {
puts("Interrupt Detected!\n");
}