git-svn-id: https://spexeah.com:8443/svn/Asuro@242 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
kieron 2017-10-25 02:24:59 +00:00
parent 9ef2bb7b4d
commit 22a34b5918
10 changed files with 6 additions and 0 deletions

BIN
Asuro.iso

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -23,6 +23,11 @@ type
Param : pchar; Param : pchar;
Next : PParamList; Next : PParamList;
end; end;
PHistory = ^THistory;
THistory = record
Command : pchar;
Next : PHistory;
end;
TCommandBuffer = array[0..1023] of byte; TCommandBuffer = array[0..1023] of byte;
TCommandMethod = procedure(params : PParamList); TCommandMethod = procedure(params : PParamList);
TCommand = record TCommand = record
@ -34,6 +39,7 @@ type
var var
buffer : TCommandBuffer; buffer : TCommandBuffer;
History : PHistory;
bIndex : uint32 = 0; bIndex : uint32 = 0;
Commands : array[0..65534] of TCommand; Commands : array[0..65534] of TCommand;