2023-01-25 11:22:27 +00:00
|
|
|
# NoxOS
|
2023-01-24 21:39:50 +00:00
|
|
|
|
2023-02-25 15:53:46 +00:00
|
|
|
NoxOS is a small x86 operating system (currently just a kernel).
|
|
|
|
The kernel is booted using the limine boot protocol and fully documented.
|
|
|
|
|
|
|
|
currently supported features:
|
|
|
|
- format strings
|
|
|
|
- heap
|
|
|
|
- exception handling
|
|
|
|
- register dumping
|
|
|
|
- scheduling
|
|
|
|
- threads
|
|
|
|
- graphics renderer
|
|
|
|
- multiple canvases
|
|
|
|
- alpha blending
|
|
|
|
- font rendering
|
2023-02-27 07:23:18 +00:00
|
|
|
- node based vfs
|
|
|
|
- ramfs
|
2023-02-25 15:53:46 +00:00
|
|
|
|
|
|
|
|
2023-02-10 18:31:53 +00:00
|
|
|
## Contribution Welcome :D
|
|
|
|
|
|
|
|
Install instructions, Code Documentation and a Contribution guide can be found in the [wiki](https://codeberg.org/antifallobst/noxos/wiki/).
|
|
|
|
|
|
|
|
## GPL3 / Copyright / License
|
2023-02-05 13:39:35 +00:00
|
|
|
Copyright (C) 2023 Antifallobst <antifallobst@systemausfall.org>
|
2023-01-24 21:39:50 +00:00
|
|
|
|
2023-01-25 11:22:27 +00:00
|
|
|
NoxOS is free software:
|
2023-01-24 21:39:50 +00:00
|
|
|
you can redistribute it and/or modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation, either version 3 of the License,
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
2023-01-25 11:22:27 +00:00
|
|
|
NoxOS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
2023-01-24 21:39:50 +00:00
|
|
|
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with this program.
|
2023-02-10 18:31:53 +00:00
|
|
|
If not, see <https://www.gnu.org/licenses/>.
|