43 lines
788 B
ObjectPascal
43 lines
788 B
ObjectPascal
{ ************************************************
|
|
* Asuro
|
|
* Unit: Drivers/ISR5
|
|
* Description: Out of Bounds Exception
|
|
************************************************
|
|
* Author: K Morris
|
|
* Contributors:
|
|
************************************************ }
|
|
|
|
unit OOBE;
|
|
|
|
interface
|
|
|
|
uses
|
|
util,
|
|
console,
|
|
isr_types,
|
|
isrmanager,
|
|
IDT;
|
|
|
|
procedure register();
|
|
|
|
implementation
|
|
|
|
procedure Main();
|
|
var
|
|
i : integer;
|
|
|
|
begin
|
|
CLI;
|
|
BSOD('OOB', 'Out of Bouunds Exception.');
|
|
console.writestringln('OOB Exception.');
|
|
util.halt_and_catch_fire;
|
|
end;
|
|
|
|
procedure register();
|
|
begin
|
|
isrmanager.registerISR(5, @Main);
|
|
//memset(uint32(@Hooks[0]), 0, sizeof(pp_hook_method)*MAX_HOOKS);
|
|
//IDT.set_gate(5, uint32(@Main), $08, ISR_RING_0);
|
|
end;
|
|
|
|
end. |