Simple OS
Go to file
mathieu d2accf3da6 Merge pull request 'ASM_WRAPPER' (#3) from ASM_WRAPPER into master
Reviewed-on: http://git.mathux.org/mathieu/matos/pulls/3
2021-10-08 17:07:17 +02:00
arch/x86 Use ASM exception wrapper 2021-10-08 16:42:32 +02:00
core Wrap IRQ with ASM 2021-10-08 11:24:02 +02:00
docs Add docs links 2020-04-22 16:53:31 +02:00
drivers Use ASM exception wrapper 2021-10-08 16:42:32 +02:00
tests ATA add write and some test 2021-10-06 10:45:03 +02:00
.clang-format vim and clang-format configuration file 2020-04-27 00:13:43 +02:00
Makefile Use ASM exception wrapper 2021-10-08 16:42:32 +02:00
README.md Wrap IRQ with ASM 2021-10-08 11:24:02 +02:00
custom_gdb_extension.py gdb: add custom cmd for printing linked list 2021-08-19 16:42:44 +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 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)

Features

  • VGA Driver
  • keyboard Driver
  • Serial Driver
  • Timer
  • Virtual memory
  • Allocator
  • Multithread (Full preempt)
  • Mutex
  • ATA