Skip to content

Hhro/lets_make_kernel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Let's develop kernel

This is my repository for kernel developing project of CyKor.

Target architecture is x86_64

Build

make install

Run with QEMU

This kernel could be run on QEMU, use this command:

make run-iso

Build with cmake

mkdir build
cd build
CC=../toolchain/build/bin/x86_64-elf-gcc CXX=../toolchain/build/bin/x86_64-elf-g++ cmake ..
make