https://github.com/ccode-lang/ostest
A testing 32 bit kernel that I am writing for fun.
https://github.com/ccode-lang/ostest
32bit asmx86 assembly kernel os
Last synced: 7 months ago
JSON representation
A testing 32 bit kernel that I am writing for fun.
- Host: GitHub
- URL: https://github.com/ccode-lang/ostest
- Owner: Ccode-lang
- Created: 2025-02-16T00:14:57.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-02-22T05:37:53.000Z (12 months ago)
- Last Synced: 2025-05-15T00:15:45.714Z (9 months ago)
- Topics: 32bit, asmx86, assembly, kernel, os
- Language: C
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OSTEST
A testing 32 bit kernel that I am writing for fun.
# Todo:
- [X] Loading
- [X] Simple VGA
- [ ] IO ports (working outb, untested inb)
- [X] GDT
- [ ] IDT (only interrupts 0-14 are done)
- [X] Paging
- [ ] PS/2 keyboard driver
# Compiler
This project needs a gcc i386-elf cross compiler located at `./compilers/gcc/bin/i686-elf-gcc` and the binutils should be in the same folder.
This project uses these versions of gcc and binutils:
* GCC: 14.2.0
* Binutils: 2.43.90
# Mentions
Thanks to the people over at [The OSDev wiki](https://wiki.osdev.org/Expanded_Main_Page) for making such great articles. OS development always confused me until I found their wiki.