Cleanup
git-svn-id: https://spexeah.com:8443/svn/Asuro@242 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
parent
9ef2bb7b4d
commit
22a34b5918
BIN
bin/kernel.bin
BIN
bin/kernel.bin
Binary file not shown.
Binary file not shown.
BIN
lib/kernel.ppu
BIN
lib/kernel.ppu
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
lib/libpsystem.a
BIN
lib/libpsystem.a
Binary file not shown.
Binary file not shown.
BIN
lib/terminal.ppu
BIN
lib/terminal.ppu
Binary file not shown.
@ -23,6 +23,11 @@ type
|
||||
Param : pchar;
|
||||
Next : PParamList;
|
||||
end;
|
||||
PHistory = ^THistory;
|
||||
THistory = record
|
||||
Command : pchar;
|
||||
Next : PHistory;
|
||||
end;
|
||||
TCommandBuffer = array[0..1023] of byte;
|
||||
TCommandMethod = procedure(params : PParamList);
|
||||
TCommand = record
|
||||
@ -34,6 +39,7 @@ type
|
||||
|
||||
var
|
||||
buffer : TCommandBuffer;
|
||||
History : PHistory;
|
||||
bIndex : uint32 = 0;
|
||||
Commands : array[0..65534] of TCommand;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user