Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ninjamar/nmk
ninjamar's kernel
https://github.com/ninjamar/nmk
i386 kernel
Last synced: 14 days ago
JSON representation
ninjamar's kernel
- Host: GitHub
- URL: https://github.com/ninjamar/nmk
- Owner: ninjamar
- License: mit
- Created: 2021-11-10T08:36:46.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-14T06:31:41.000Z (almost 2 years ago)
- Last Synced: 2024-11-19T17:54:26.579Z (3 months ago)
- Topics: i386, kernel
- Language: C
- Homepage:
- Size: 40 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NMK
ninjamar's kernel
[Demo](https://replit.com/@ninjamar/gh-nmk)
## Running the kernel```bash
git clone https://github.com/ninjamar/nmk
```
### Compiling```bash
make
```
### Runnig```bash
make run
```
If `qemu-system-i386` says it is missing some files, download the tar.gz archive of them from https://ninjamar.dev/static/files/qemu-kernel-files.tar.gz and extract them into the root of the `nmk` directory. Then run `export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/lib
`
## Todo
- Add a makefile
- Compiling and running
- Better display function (`src/display.h`)
- Newline support (`kprint_x_y`)
- Text wraping (`kprint_x_y`)