Skip to content

z3nnix/NovariaOS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NovariaOS Source:

  _   _                      _        ___  ____  
 | \ | | _____   ____ _ _ __(_) __ _ / _ \/ ___| 
 |  \| |/ _ \ \ / / _` | '__| |/ _` | | | \___ \ 
 | |\  | (_) \ V / (_| | |  | | (_| | |_| |___) |
 |_| \_|\___/ \_/ \__,_|_|  |_|\__,_|\___/|____/ 

A UNIX-like OS written from scratch. Our mission is to create a complete operating system. Our operating system can be used as a subject of study. Our source code is open to the public, and anyone can check it for security risks. We welcome such testing. Follow us on social media! TG: @novariaos

Source-tree:

NovariaOS
├── LICENSE
├── README.md
├── chorus.build
├── core
│   ├── apps
│   │   └── hello.nvm
│   ├── arch
│   │   ├── acpi.c
│   │   ├── boot.asm
│   │   ├── idt.h
│   │   ├── multiboot.h
│   │   ├── pause.c
│   │   └── pause.h
│   ├── drivers
│   │   ├── keymap.h
│   │   ├── ps2.c
│   │   ├── serial.c
│   │   ├── serial.h
│   │   ├── timer.c
│   │   ├── timer.h
│   │   ├── vga.c
│   │   └── vga.h
│   └── kernel
│       ├── kernel.c
│       ├── kstd.c
│       ├── kstd.h
│       ├── mem.c
│       ├── mem.h
│       └── nvm
│           ├── nvm.c
│           └── nvm.h
├── docs
│   ├── 1.0-What-is-Novaria.md
│   ├── 1.1-Our-goals.md
│   ├── 1.2-Build-from-source.md
│   └── 2.0-What-is-NVM.md
├── lib
│   └── nc
│       ├── stdbool.h
│       ├── stdlib.h
│       └── time.h
├── link.ld
└── website
    ├── docs.html
    ├── index.html
    └── styles.css