
Added Header Comments to units. git-svn-id: https://spexeah.com:8443/svn/Asuro@51 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
34 lines
556 B
ObjectPascal
34 lines
556 B
ObjectPascal
{ ************************************************
|
|
* Asuro
|
|
* Unit: Drivers/ISR11
|
|
* Description: Segment Not Present Exception
|
|
************************************************
|
|
* Author: K Morris
|
|
* Contributors:
|
|
************************************************ }
|
|
|
|
unit isr11;
|
|
|
|
interface
|
|
|
|
uses
|
|
util,
|
|
console,
|
|
isr_types,
|
|
IDT;
|
|
|
|
procedure register();
|
|
|
|
implementation
|
|
|
|
procedure Main(); interrupt;
|
|
begin
|
|
util.halt_and_catch_fire;
|
|
end;
|
|
|
|
procedure register();
|
|
begin
|
|
IDT.set_gate(11, uint32(@Main), $08, ISR_RING_0);
|
|
end;
|
|
|
|
end. |