- Direct Linux system call access
- Advanced file system, supports many filesystems, and works on real hardware
- Most features found in both the C# and Go standard library
- BIOS & EFI support on real hardware, almost all features work on real hardware
- Framebuffer support to the point where it can run DOOM.
- Including files in the system, allows lots of apps (with their libraries) to be ran (including apps like
ffmpeg
) - Faster than Cosmos in almost every way
libmalino is the Go module that your OS imports, so you don't need 50 lines just to read a line from the user.
Include it in your Go file with import "github.com/malinoOS/malino/libmalino"
.
libmalino-cs is libmalino but for C#. It uses .NET 8.0 to compile, and is placed in /opt/malino/libmalino-cs.dll
.
malino automatically "links" libmalino-cs with your project if you have your project configured to build for C#.
MSB stands for "Malino Syscall Bridge". This is only used with C# projects, and it's used to allow C# to make Linux system calls, since for some reason it can't by default. And it uses clang
to build since this is a syscall bridge and must be written in C.
malino is the toolkit and command you use to create projects, build, export, etc...