Make a Simple Operating System
Make a Simple Operating System Ever wanted to make an Operating System? Ever waned to know how command line operating systems work? Everything's here! So we'll make a basic Operating System in C#, don't worry, if you even know some basics of c++ or java, you'll understand the code :D By end of this tutorial, you'll be able to make your cool operating system! So lets begin with some ind Step 1: The Concept So, how actually a OS works? I'll explain from the level of a electric circuit. Most of you know logic gates in electric circuits. when many logic gates are connected, i.e. billions of transistors are connected together inside a chip, they can store 0s and 1s. Each gate could store either 0 or 1. Then the connected transistor forms a Micro-Controller or a Micro-Processor. Here we are going to program on the micro-processor which is in your computer. Did you know that your computer can also run with a operating system!? Wonder h...