C++OSEngine (the basic)

What's C++OSEngine (real one)

If you are from my video bellow:

Then you will not understand what's C++OSEngine because it's my experiences of the project. First, C++OSEngine is a toolkit (not really) used C++ to make an OS, this toolkit was used the idea from Cosmos C#. Second, this is just an alpha version of it, some function might not work like GUI.

This one is used protected mode for the kernel. if you're don't know what protected mode is, go to this side bellow:

Protected Mode (osdev) Protected Mode (wikipedia)

C++OSEngine function

Here is all the classes/functions you can use.

(ACPI.h)

Shutdown(); //Shutdown the system.

Reboot(); //Reboot the system.
(console.h)
'Console' class

Clear(); //Clear the screen.

ReadLine(); //read a string from user input.

WriteChr(char); //Write a character.

Write(str); //Write the text.

[ConsoleColor] ForegroundColor; //Get or set the ForegroundColor.

[ConsoleColor] BackgroundColor; //Get or set the BackgroundColor.

WriteLine(str); //Write the text, followed by the current line terminator.
(kernel.h)
'Assembly' class

in(port); //read from I/O port (8-bit).

out(port,data) //write data to I/O port (8-bit).

inw(port); // same as 'in' function but use 16-bit.

outw(port); // same as 'out' function but use 16-bit.

'Kernel' class

void Main::BeforeStart() //Start something up before start the main kernel.

void Main::Start() //Start here.

void Main::AfterStart() //Use custom code before halt the system.