Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A small kernel written in Nim

License

NotificationsYou must be signed in to change notification settings

dom96/nimkernel

Repository files navigation

This is a small 32bit (i686) kernel written using the Nim programming language.

I have been wanting to do this for a while but it wasn't until people in the #nim IRCchannel inquired about Nim OS dev and therustboot kernel inspired me that I finally did it.

It doesn't do much, but it doesn't need to. Its purpose is to provide a startingpoint for anyone wishing to write an OS in Nim.

It still manages to do a little more than fill a screen with a certain color.Nimkernel implements:

  • AwriteString function which shows a string on screen in a specifiedposition.
  • Arainbow function which shows a string with a rainbow-like textforeground color differentiation in a specified position.
  • Some simple error handling by implementing Nim system.nim'spanicfunction.
  • Support for 16 colors with a brilliant type safe API!

Note: The error at the bottom is intentional, it is used to show thatthe error handling works properly.

Setup

You are required to have:

  • QEMU
  • a C and asm cross-compiler for i686
  • Nim 1.6.0 or higher
  • nimble (*)

* You can always grab the nake library manually fromhere.

Linux

I have performed this setup on a Arch Linux machine, but all other distrosshould work too.

Building a cross compiler

For more information take a look at theOSDev article.

You will need to download the source of binutils and gcc.

Firstcd into a suitable directory in which you would like to download, unzipand build the cross compiler. Then perform the following actions:

$ wget https://ftp.gnu.org/gnu/binutils/binutils-2.37.tar.xz$ tar -xJf binutils-2.37.tar.xz$cd binutils-2.37$ mkdir build&&cd build$ ../configure --target=i686-elf --prefix=$HOME/cross-tools/ --with-sysroot --disable-nls --disable-werror$ make -j$(nproc)$ make install

You may then grab the GCC source and build it:

$ wget https://ftp.gnu.org/gnu/gcc/gcc-11.2.0/gcc-11.2.0.tar.xz$ tar -xJf gcc-11.2.0.tar.xz$cd gcc-11.2.0$ mkdir build&&cd build$ ../configure --target=i686-elf --prefix=$HOME/cross-tools/ --disable-nls --enable-languages=c --without-headers$ make all-gcc -j$(nproc)$ make all-target-libgcc -j$(nproc)$ make install-gcc$ make install-target-libgcc

You should then have a i686-elf-gcc and i686-elf-as executable in $HOME/cross-tools/bin/ or somewhere thereabouts.You should then add it to your PATH permanently or temporarily by doing:

export PATH=$PATH:$HOME/cross-tools/bin

Downloading cross compiler binaries

If for some reason you either can't or don't want to build your own toolchain you can grab binaries fromhttps://github.com/lordmilko/i686-elf-tools/releases

Please note that these are a bit outdated but they are confirmed to work.

Nim setup

Follow the instructions in theNim repo to bootstrap Nim and put it in your PATH.

Do the same fornimble and installnake by executingnimble install nake oralternatively just savenakeinto the root dir of this repo.

You can then compile the nakefile and therefore compile nimkernel:

$ nim c nakefile$ ./nakefile run

This will automatically build and run the kernel using QEMU.

License

Nimkernel is licensed under the MIT license.

About

A small kernel written in Nim

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors4

  •  
  •  
  •  
  •  

[8]ページ先頭

©2009-2025 Movatter.jp