Mirror of CollapseOS
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
Virgil Dupras 7262993f14 basic: add if 4 år sedan
..
fnt recipes/ti84: use a 3x5 font instead of a 5x7 one 4 år sedan
sms Move ASCII consts to ascii.h 4 år sedan
ti Move ASCII consts to ascii.h 4 år sedan
README.md Make the shell a userspace app 4 år sedan
acia.asm acia: make GetC blocking 4 år sedan
ascii.h Move ASCII consts to ascii.h 4 år sedan
blkdev.h Make the shell a userspace app 4 år sedan
blockdev.asm Make the shell a userspace app 4 år sedan
core.asm Extract str.asm from core.asm and make core included by userspace 4 år sedan
err.h Rename blockdev's API routines to GetB/PutB 4 år sedan
fs.asm Make the shell a userspace app 4 år sedan
fs.h Make the shell a userspace app 4 år sedan
kbd.asm kbd: add keypad codes to keycode table 5 år sedan
mmap.asm Rename blockdev's API routines to GetB/PutB 4 år sedan
sdc.asm Rename blockdev's API routines to GetB/PutB 4 år sedan
stdio.asm Make the shell a userspace app 4 år sedan
str.asm basic: add if 4 år sedan
user.h.example zasm emul: bring back kernel/user distinction 5 år sedan

README.md

Kernel

Bits and pieces of code that you can assemble to build a kernel for your machine.

These parts are made to be glued together in a single glue.asm file you write yourself.

This code is designed to be assembled by Collapse OS’ own [zasm][zasm].

Scope

Units in the kernel/ folder is about device driver, abstractions over them as well as the file system. Although a typical kernel boots to a shell, the code for that shell is not considered part of the kernel code (even if, most of the time, it's assembled in the same binary). Shells are considered userspace applications (which live in apps/).