Added ISR1.

git-svn-id: https://spexeah.com:8443/svn/Asuro@41 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
kieron
2017-05-17 12:01:51 +00:00
parent b228f28968
commit 998c45da64
2 changed files with 29 additions and 1 deletions

View File

@ -3,7 +3,8 @@ unit isr;
interface
uses
ISR0;
ISR0,
ISR1;
procedure init();
@ -12,6 +13,7 @@ implementation
procedure init();
begin
ISR0.register();
ISR1.register();
end;
end.