Building a Kernel / Operating system from scratch.
 
 
 
 
 
 
Go to file
Nigel Barink 7616ad40ee Moving logo to png format gitea doesn't handle svg format, simplified screenshot inclusion in readme 2021-05-26 20:03:53 +01:00
docs Added introduction, manuals and project structure markdown files to docs 2021-05-03 02:23:49 +02:00
images Added an otter logo! I think its so cute 2021-05-26 19:54:59 +01:00
screenshots Added first screenshot 2021-05-03 20:46:11 +02:00
src Implemented serial for basic debugging, Added MMU enable to kernel main 2021-05-10 21:33:25 +01:00
.gitattributes Added an otter logo! I think its so cute 2021-05-26 19:54:59 +01:00
.gitignore Initial setup, Basic helloworld kernel from wiki.osdev.org bare bones 2021-05-02 12:02:00 -04:00
Makefile Implemented serial for basic debugging, Added MMU enable to kernel main 2021-05-10 21:33:25 +01:00
README.md Moving logo to png format gitea doesn't handle svg format, simplified screenshot inclusion in readme 2021-05-26 20:03:53 +01:00
TODO.md Implemented serial for basic debugging, Added MMU enable to kernel main 2021-05-10 21:33:25 +01:00

README.md

Writing an Operating system

As a learning experience!

Inspired by people like Linus Torvalds and Andreas Kling

Logo


Screenshot(s)

Scrolling the terminal
The first scrolling boot screen. 😲


The goal

Writing a hobby operating system to better understand the basic building blocks of any operating system.


Operating System Technical specs/details

The operating system can print strings to the screen. The terminal/screen has scrolling so the latest messages are visible on the screen.


Planning

See TODO


Docs

Intro
Manuals
Project structure


Resources:

General kernel stuff

wiki.osdev.org/Main_Page

Modern Operating Systems [book]

whiteheadsoftware.dev

More specific stuff

VFS explained: science.unitn.it