Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
osdev:environment [2024/02/14 12:57] – [Windows] Tiberiu Chibici | osdev:environment [2024/02/14 14:17] (current) – Tiberiu Chibici | ||
---|---|---|---|
Line 4: | Line 4: | ||
A long time ago, writing an operating system was done by writing assembly code //on paper//, going through the CPU manual and translating every assembly instruction into binary by hand, and then punching tape using a special typewriter (citation needed). Luckily for us, things have gotten a lot better and we have much better tools available. We have smart editors to help us write code easier, advanced compilers and assemblers, and really good debugging tools. | A long time ago, writing an operating system was done by writing assembly code //on paper//, going through the CPU manual and translating every assembly instruction into binary by hand, and then punching tape using a special typewriter (citation needed). Luckily for us, things have gotten a lot better and we have much better tools available. We have smart editors to help us write code easier, advanced compilers and assemblers, and really good debugging tools. | ||
+ | |||
===== The host operating system ===== | ===== The host operating system ===== | ||
Line 9: | Line 10: | ||
For the best experience, the general recommendation is to use a Unix-like system such as Linux, MacOS or a BSD variant. | For the best experience, the general recommendation is to use a Unix-like system such as Linux, MacOS or a BSD variant. | ||
+ | |||
==== Windows ==== | ==== Windows ==== | ||
Line 15: | Line 17: | ||
* using WSL to create a Linux environment. Most OS developers choose this path, and is the one used in the tutorials on this site | * using WSL to create a Linux environment. Most OS developers choose this path, and is the one used in the tutorials on this site | ||
* using a port of the Linux tools, such as Cygwin or MSYS2. The main disadvantages are the performance of the tools (e.g. the compiler) which means longer compile times, and the difficulty of creating disk images on Windows | * using a port of the Linux tools, such as Cygwin or MSYS2. The main disadvantages are the performance of the tools (e.g. the compiler) which means longer compile times, and the difficulty of creating disk images on Windows | ||
- | * using native Windows and Microsoft tools | + | * using [[osdev: |
=== Setting up WSL === | === Setting up WSL === | ||
Line 30: | Line 32: | ||
Caveat: There are 2 versions of WSL. WSL 1 is built as a translation layer that translate linux system calls into Windows system calls. This has some limitations, | Caveat: There are 2 versions of WSL. WSL 1 is built as a translation layer that translate linux system calls into Windows system calls. This has some limitations, | ||
- | |||
==== Linux ==== | ==== Linux ==== | ||
Line 40: | Line 41: | ||
While MacOS is a Unix-like operating system, it doesn' | While MacOS is a Unix-like operating system, it doesn' | ||
- | There are some small differences between Linux and MacOS, such as the commands used setting | + | There are some small differences between Linux and MacOS, such as the commands used to set up loopback devices, or the commands |
==== Others ==== | ==== Others ==== | ||
* **BSD**: you are already set up, you just need to install the tools below. | * **BSD**: you are already set up, you just need to install the tools below. | ||
- | * **Android**: | + | * **Android**: |
* **ChromeOS**: | * **ChromeOS**: | ||
- | * **iOS**: the operating system is too locked down to allow any kind of software development on the device. | + | * **iOS**: the operating system is too locked down to allow any kind of software development on the device. |
+ | * **MS-DOS, FreeDOS**: there are plenty of compilers and tools available (such as DjGPP, Turbo C, Microsoft C, Watcom etc). The main limitations are the fact that pretty much all the tools are outdated and unmaintained, | ||
+ | |||
+ | ===== The toolchain ===== | ||
+ | |||
+ | As part of your toolchain, you will need an assembler, a compiler, a linker and a tool to automate your build process. | ||
+ | |||
+ | ==== The assembler ==== | ||
+ | |||
+ | An assembler is a tool that translates human readable assembly code into machine code that the processor can execute. The main difference from a compiler is that assemblers are purposefully built to have a 1:1 mapping between the human readable instructions and the machine code. | ||
+ | |||
+ | Most people use either [[https:// | ||
+ | |||
+ | ==== The compiler ==== | ||
+ | |||
+ | Compiler choice will depend on the programming language you decide to use for your project. The important part is that [[https:// | ||
+ | |||
+ | Traditionally, | ||
+ | |||
+ | Lately, there has been an increasing number of people using [[https:// | ||
+ | |||
+ | ==== The linker ==== | ||
+ | |||
+ | In most cases, you would use the linker that comes with your compiler. It's important that you familiarize yourself with how it works, and how you can configure it for OS development. (more info needed) | ||
+ | |||
+ | ==== Build automation ==== | ||
+ | |||
+ | In the beginning, you may have a single assembly file that you can compile by hand, by typing the assembler command. However, as your project grows, you will find it tedious to write every command by hand, so you will want to automate the process. | ||
+ | |||
+ | The simplest form of build automation is to use a shell/batch script. But once the project grows to a few dozen files, the compile times will start to grow. | ||
+ | |||
+ | This is where build automation tools like [[https:// | ||
+ | |||
+ | ===== The editor ===== | ||
+ | |||
+ | Any text editor can be used to write the operating system, and the choice comes down to preference. Some people really love the old-school Linux terminal-based editors like vim and emacs. Others prefer something more modern, like Visual Studio Code, or a fully fledged IDE like Clion, RustRover, Eclipse, Visual Studio etc. The choice is up to you. | ||
+ | |||
+ | ===== Debuggers and virtualization software ===== | ||
+ | For testing your operating system, it is ideal to use virtualization. This way, you save a lot of time, since starting a virtual machine is much faster than copying your OS to a physical media, putting it in another PC (or even worse, restarting your main PC). Also, most virtualization tools offer built-in debugging capabilities, | ||
+ | * Bochs is an x86 emulator and debugger | ||
+ | * Qemu - offers a GDB interface that can be used for debugging | ||
+ | * VirtualBox - has limited [[https:// | ||
+ | * VMWare - can [[https:// | ||