git-svn-id: https://spexeah.com:8443/svn/Asuro@205 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
kieron
2017-05-23 19:46:30 +00:00
parent 5912e3b228
commit 82c557ecab
53 changed files with 131 additions and 17 deletions

View File

@ -42,17 +42,24 @@ procedure register();
var
status : uint8;
bm : PBitMask;
ak : uint8;
begin
memset(uint32(@Hooks[0]), 0, sizeof(pp_hook_method)*MAX_HOOKS);
IDT.set_gate(45, uint32(@Main), $08, ISR_RING_0);
outb($64, $20);
status:= inb($64);
ak:= inb($64);
console.writebin8ln(status);
bm:= PBitMask(@status);
bm^.b1:= true;
bm^.b5:= false;
console.writebin8ln(status);
//while true do begin end;
outb($64, $60);
ak:= inb($64);
outb($60, status);
ak:= inb($60);
end;
procedure hook(hook_method : uint32);