Most of these are taken from https://cc65.github.io/doc/customizing.html, but modified to suit this setup.
7 lines
113 B
C
7 lines
113 B
C
|
|
// This is defined in main.c
|
|
void puts(const char* s);
|
|
|
|
void handle_irq() {
|
|
puts("Interrupt Detected!\n");
|
|
} |