Re: Year 1 OS - Community Blog
yea? well I have a couple of routes to consider... Year1OS is just a first step... I don't plan on making a filesystem because my command shell will be an interpreter... you are going to be able to browse the memory and browse the storage as if it where memory... for example
the following will set your path to inside the object
system.image.toolsCode:
prompt> CD system.image.tools
and then when you type
DIR the following shows up
Code:
prompt> DIR
OBJ system.image.tools
OBJ pen;
FUNC void PutPixel(int x, int y, tColor c);
FUNC tColor GetPixel(int x, int y);
FUNC void DrawRect(int x1, int y1, int x2, int y2);
FUNC void DrawCircle(int x, int y, int r);
FUNC void DrawPoly(int x, int y, tPath p);
stuff within the harddrive will be stored as if it where memory. like say the whole harddrive is one giant swap file but the OS will provide the user with the ability to browse thru it...
yes, its ambitious thats the kind of route I'll be takin...