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

This commit is contained in:
aaron
2019-01-25 15:20:48 +00:00
parent 775733ff51
commit 6330b1bc72
4 changed files with 772 additions and 4 deletions

View File

@ -0,0 +1,51 @@
{ ************************************************
* Asuro
* Unit: Drivers/storage/partitontable
* Description: partionTable
*
************************************************
* Author: Aaron Hance
* Contributors:
************************************************ }
unit partitontable;
interface
uses
console,
storagemanagement,
util, terminal,
lmemorymanager,
strings,
lists,
tracer,
rtc;
type
TPartitonTable = record
end;
PPartitonTable = ^TPartitonTable;
var
location = $1BE;
procedure create_new(device : PStorage_Device);
function get_table() : PPartitonTable;
procedure add_volume(volume : TStorage_Volume);
implementation
procedure create_new(device : PStorage_Device);
var
begin
end;
function get_table() : PPartitonTable;
procedure add_volume(volume : TStorage_Volume);
end.