git-svn-id: https://spexeah.com:8443/svn/Asuro@472 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c

This commit is contained in:
kieron 2018-04-10 15:53:08 +00:00
parent c56319923a
commit c477deefb2
6 changed files with 3 additions and 13 deletions

View File

@ -21,7 +21,6 @@ var
Header : PIPV4Header;
AHeader : TIPV4AbstractHeader;
i : Integer;
buf : puint8;
len : uint16;

View File

@ -52,12 +52,7 @@ type
const
BDA : PBDA = PBDA($C0000400);
var
EBDA : void;
MCFG : PMCFG;
procedure tick_update(data : void);
procedure init();
implementation
@ -69,10 +64,4 @@ begin
BDA^.Ticks:= BDA^.Ticks + 1;
end;
procedure init();
begin
console.outputln('BDA','Loaded.');
//TO-DO search for important structures like the MCFG or the EBDA.
end;
end.

View File

@ -9,6 +9,7 @@ uses
type
{ Managed Linked List }
PLinkedList = ^TLinkedList;
TLinkedList = record
Previous : PLinkedList;
@ -24,6 +25,7 @@ type
end;
{ Managed Linked List }
function LL_New(ElementSize : uint32) : PLinkedListBase;
function LL_Add(LinkedList : PLinkedListBase) : Void;
function LL_Delete(LinkedList : PLinkedListBase; idx : uint32) : boolean;