dulikvor / AOS

A simplified unikernel pet project

Repository from Github https://github.comdulikvor/AOSRepository from Github https://github.comdulikvor/AOS

Screenshot

AOS is a hobby unikenerl written in modern C++.

Main properties:

  1. Based upon c++14 (no exceptions, rtti, atomics, threads and fences are supported yet).
  2. No virtual memory concept, only physical memory is supported for now.
  3. Limited to 32 bit.

In order to build the project, run the cmake script:

mkdir build && cd build
cmake ..
make

qemu can be used to run the image

qemu-system-i386 -kernel aos.bin

About

A simplified unikernel pet project


Languages

Language:C++ 55.8%Language:CMake 23.6%Language:C 16.2%Language:Assembly 4.4%