OPerating System Design using C
Posted: Mon Sep 02, 2002 9:12 pm
How to start designing my own operating system using the C Language.Please help
The Place to Start for Operating System Developers
http://f.osdev.org/
Code: Select all
asm("jmp main");
int main()
{
while (1)
{
}
}
well, you could use 2 compielrs, 1 16bit and 1 32 bitPosted on: Today at 06:52:30am If you want to just program the OS just in C, that's imposible, you need some assembly.
it took me 2 weeks or something...Making your own Assembly bootsector is REALLY hard. It took me 3 months because I had to learn alot. Making your own OS is alot different than programming with VC++ or VB.
(32bit) pmode allows you to use max 4 gigabyte of memory.If your wondering what Protected Mode ( PMode ) is, it's a processor ( CPU ) mode that interrupts are disabled ( well, there's alot more to PMode ).