Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rimubytes/kernel-demo

This is a minimalist kernel
https://github.com/rimubytes/kernel-demo

kernel

Last synced: 2 days ago
JSON representation

This is a minimalist kernel

Awesome Lists containing this project

README

        

# kernel-demo
This project demonstrates the creation of a basic operating system kernel. It includes the setup of a bootloader and a simple kernel written in C and assembly.

### Project Structure
---

```plaintext
kernel-demo/
├── boot/
│ ├── boot.asm
│ └── linker.ld
├── build/
├── include/
│ └── kernel.h
├── kernel/
│ ├── kernel_entry.asm
│ └── kernel.c
├── scripts/
│ └── build.sh
├── Makefile
└── README.md
```

### Building the project
---

```bash
./scripts/build.sh
```