Bottler Operating System
Go to file
Santiago Lo Coco 2d6e9285db Add BottlerOS files
Co-authored-by: Juan Barmasch <jbarmasch@itba.edu.ar>
Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar>
2021-09-19 10:24:58 -03:00
.vscode Add BottlerOS files 2021-09-19 10:24:58 -03:00
Bootloader Add BottlerOS files 2021-09-19 10:24:58 -03:00
Image Add BottlerOS files 2021-09-19 10:24:58 -03:00
Kernel Add BottlerOS files 2021-09-19 10:24:58 -03:00
Toolchain Add BottlerOS files 2021-09-19 10:24:58 -03:00
Userland Add BottlerOS files 2021-09-19 10:24:58 -03:00
.gdbinit Add BottlerOS files 2021-09-19 10:24:58 -03:00
.gitignore Add BottlerOS files 2021-09-19 10:24:58 -03:00
License.txt Add BottlerOS files 2021-09-19 10:24:58 -03:00
Makefile Add BottlerOS files 2021-09-19 10:24:58 -03:00
Readme.txt Add BottlerOS files 2021-09-19 10:24:58 -03:00
run.bat Add BottlerOS files 2021-09-19 10:24:58 -03:00
run.sh Add BottlerOS files 2021-09-19 10:24:58 -03:00
x64BareBones.png Add BottlerOS files 2021-09-19 10:24:58 -03:00

Readme.txt

x64BareBones is a basic setup to develop operating systems for the Intel 64 bits architecture.

The final goal of the project is to provide an entry point for a kernel and the possibility to load extra binary modules separated from the main kernel.

Environment setup:
1- Install the following packages before building the Toolchain and Kernel:

nasm qemu gcc make

2- Build the Toolchain

Execute the following commands on the x64BareBones project directory:

  user@linux:$ cd Toolchain
  user@linux:$ make all

3- Build the Kernel

From the x64BareBones project directory run:

  user@linux:$ make all

4- Run the kernel

From the x64BareBones project directory run:

  user@linux:$ ./run.sh


Author: Rodrigo Rearden (RowDaBoat)
Collaborator: Augusto Nizzo McIntosh