From ef36923999bcbd2cdd7fa288bd44f3a494308356 Mon Sep 17 00:00:00 2001 From: Elias Almqvist Date: Fri, 10 Sep 2021 17:51:11 +0200 Subject: [PATCH] Update README.md --- README.md | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 1966aae..900269e 100644 --- a/README.md +++ b/README.md @@ -1,29 +1,34 @@ -

e-Operting System

-

-

A simple x86 operating system. Maybe 64bit in the future.

-

+

+

A simple & lightweight x86 operating system

+ ### Building & Running Use the `Makefile` in order to build the binaries/objects et cetera- with make.
-Example: `$ make os-image` +**To build the OS image run**: `$ make os-image` +
+**To build the OS image (WITH GRUB) run**: `$ make grub`

-In order to run you can launch the OS with qemu. You can also launch qemu via make by doing: `$ make run`. +#### Emulation +You can launch eOS with a VM like qemu. You can also launch *qemu* via *make* by running: `$ make run`. $ make (option) run : Runs the OS with qemu drun : Recompiles the OS and runs it with qemu clean : Remove all object/binary/image files -### Features - - 32bit - - VGA - - And more to come! - ### Planned Features Read `TODO.md` for planned features. +
+
+
+
+ ### Resources -#### Books +These are the most common resources I used in order to build eOS. I highly recommend them. +##### Books - [Operating Systems: From 0 to 1](https://tuhdo.github.io/os01/) (Open-Source, unfinished) - [Writing a Simple Operating System - from Scratch](https://www.cs.bham.ac.uk/~exr/lectures/opsys/10_11/lectures/os-dev.pdf) +##### Wikis + - [OSDev.org](https://wiki.osdev.org/Expanded_Main_Page)