Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/rimubytes/kernel-demo
- Owner: rimubytes
- Created: 2024-07-29T12:27:38.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-02T18:21:43.000Z (3 months ago)
- Last Synced: 2024-09-11T17:55:44.254Z (2 months ago)
- Topics: kernel
- Language: Shell
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```