Added standard ISRs.

Added Header Comments to units.

git-svn-id: https://spexeah.com:8443/svn/Asuro@51 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
kieron
2017-05-17 13:07:58 +00:00
parent 6adabcaa91
commit cefe9481e8
30 changed files with 728 additions and 8 deletions

View File

@ -1,10 +1,21 @@
{ ************************************************
* Asuro
* Unit: isr
* Description: Stub for ISR Driver Initialization
************************************************
* Author: K Morris
* Contributors:
************************************************ }
unit isr;
interface
uses
ISR0,
ISR1;
ISR0, ISR1, ISR2, ISR3, ISR4, ISR5, ISR6, ISR7, ISR8, ISR9,
ISR10, ISR11, ISR12, ISR13, ISR14, ISR15, ISR16, ISR17, ISR18;
procedure init();
@ -14,6 +25,23 @@ procedure init();
begin
ISR0.register();
ISR1.register();
ISR2.register();
ISR3.register();
ISR4.register();
ISR5.register();
ISR6.register();
ISR7.register();
ISR8.register();
ISR9.register();
ISR10.register();
ISR11.register();
ISR12.register();
ISR13.register();
ISR14.register();
ISR15.register();
ISR16.register();
ISR17.register();
ISR18.register();
end;
end.