And a few other nice things. The bootloader now has an embedded wozmon! If you know its offset, you can jump to it from the app.
7 lines
118 B
C
7 lines
118 B
C
#pragma once
|
|
|
|
using Isr = void(*)();
|
|
|
|
void SetExternalInterruptHandler(Isr handler);
|
|
void EnableExternalInterrupts();
|