From 040e083658a068c4445b28311b6962d054d8fe8a Mon Sep 17 00:00:00 2001 From: Robert Date: Sun, 3 Sep 2023 13:24:00 +0200 Subject: [PATCH] add gitignore --- .gitignore | 2 ++ README.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7981869 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +build/ +*.ini diff --git a/README.md b/README.md index 790d71f..0d1d88b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Clipper -Clipper is an operating system kernel I write to learn about kernel development. As of right now, it is more or less following [nanobyte's](https://www.youtube.com/@nanobyte-dev) OS development tutorial. +Clipper is an operating system kernel I write to learn about kernel development. As of right now, it is more or less following the [OSDev wiki](https://wiki.osdev.org) entries and tutorials. My ultimate goal is to create a simple, bootable POSIX-compliant operating system.