https://github.com/deanoburrito/northport
Monolithic kernel and support libraries for riscv64 and x86_64.
https://github.com/deanoburrito/northport
c-plus-plus kernel operating-system os osdev
Last synced: 11 months ago
JSON representation
Monolithic kernel and support libraries for riscv64 and x86_64.
- Host: GitHub
- URL: https://github.com/deanoburrito/northport
- Owner: DeanoBurrito
- License: mit
- Created: 2021-11-22T06:06:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-05-28T09:11:01.000Z (about 2 years ago)
- Last Synced: 2024-05-29T00:23:33.533Z (about 2 years ago)
- Topics: c-plus-plus, kernel, operating-system, os, osdev
- Language: C++
- Homepage:
- Size: 2.25 MB
- Stars: 74
- Watchers: 2
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Roadmap: docs/Roadmap.md
Awesome Lists containing this project
README

Here lives the northport kernel (npk) and some support libraries. This is the third
iteration of this project, for previous attempts see the `iteration-X` git branches.
The kernel currently only supports x86_64, ports for m68k and aarch64 are planned.
To get started building or hacking on northport, you can clone the master branch of
the repo and run `make` for further instructions.
Northport is my personal hobby operating system - it's not something that I would
recommend for any serious usage. There may be bugs, and my responses may take time.
I do still appreciate any reports sent my way though.
## Project Goals
1) To build a usable and relatively complete kernel. It should also be extensible
(via drivers) to add support for new architectures, platforms and devices.
2) The system should be self hosting, including cross compiling.
3) Useful documentation, not just the external interfaces, but the internal workings.
## Glorious Screenshots
*coming soon (tm)* - currently there's not much going on, and much less to look at.
## Related Projects
- [DreamOS64](https://github.com/dreamos82/Dreamos64): another 64-bit OS by one
of the northport contributors, [Ivan G](https://github.com/dreamos82).
- [OSdev notes](https://github.com/dreamportdev/Osdev-Notes): a repository of notes
about various osdev topics. Feel free to contribute!