Simple OS
Go to file
Mathieu Maret 582c06afbc Reduce mem to 16M in debug 2021-04-09 20:44:48 +02:00
arch/x86 VGA renaming 2021-01-25 14:00:06 +01:00
core WIP: implement basic of alloc area 2021-04-07 16:34:37 +02:00
docs Add docs links 2020-04-22 16:53:31 +02:00
drivers Various cleaning 2021-01-25 20:05:38 +01:00
tests add asprintf 2021-01-25 10:17:19 +01:00
.clang-format vim and clang-format configuration file 2020-04-27 00:13:43 +02:00
Makefile Reduce mem to 32M 2021-04-09 20:44:24 +02:00
README.md Fix cmd in Readme.md 2021-03-18 09:16:14 +01:00
custom_gdb_extension.py add some pretty-printer for kthread 2020-08-21 00:35:33 +02:00
debug.gdb Reduce mem to 16M in debug 2021-04-09 20:44:48 +02:00
linker.ld First step for memory management 2018-08-06 18:41:45 +02:00

README.md

Introduction

Matos is a simple OS.

It's targetting x86 and inspirated by http://sos.enix.org/fr/PagePrincipale

Dependencies

To generate iso image

  • mtools xorriso (which is libisoburn on ArchLinux)
  • gcc >= 6

Run it

make run

or

make fd.iso && qemu-system-x86_64 -cdrom fd.iso

you can also test it

make self_test

Debug

gdb could be launch with debug symbols using :

make debug

Then you can check some matos specific commands or pretty printing with

help user-defined info pretty-printer (Should contains matos_pretty_printers)