Mirror of CollapseOS
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Virgil Dupras 921a109749 stdio: little tweaks vor 5 Jahren
..
sms sms/pad: make B jump to the next selection "class" vor 5 Jahren
README.md Update docs w.r.t. its relationship with scas vor 5 Jahren
acia.asm acia: protect DE during aciaInt vor 5 Jahren
blockdev.asm Update comments vor 5 Jahren
blockdev_cmds.asm blockdev: fix bug recently introduced in load cmd vor 5 Jahren
core.asm shell: add support for backspace vor 5 Jahren
err.h blockdev: make implementors "random access" vor 5 Jahren
fs.asm zasm: fix include EOF detection vor 5 Jahren
fs_cmds.asm fs: fix broken fopn on id > 0 vor 5 Jahren
kbd.asm kbd: make letters lowercase vor 5 Jahren
mmap.asm blockdev: make implementors "random access" vor 5 Jahren
parse.asm parse: fix option word default value vor 5 Jahren
pgm.asm pgm: adapt to recent blkdev change vor 5 Jahren
sdc.asm sdc: make sdcReadBlk return error on max retries vor 5 Jahren
shell.asm stdio: add stdioReadC vor 5 Jahren
stdio.asm stdio: little tweaks vor 5 Jahren
user.h.example zasm emul: bring back kernel/user distinction vor 5 Jahren

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.

Defines

Each part can have its own constants, but some constant are made to be defined externally. We already have some of those external definitions in platform includes, but we can have more defines than this.

Each part has a “DEFINES” section listing the constant it expects to be defined. Make sure that you have these constants defined before you include the file.

Variable management

Each part can define variables. These variables are defined as addresses in RAM. We know where RAM start from the RAMSTART constant in platform includes, but because those parts are made to be glued together in no pre-defined order, we need a system to align variables from different modules in RAM.

This is why each part that has variable expect a <PARTNAME>_RAMSTART constant to be defined and, in turn, defines a <PARTNAME>_RAMEND constant to carry to the following part.

Thus, code that glue parts together could look like:

MOD1_RAMSTART .equ RAMSTART
#include "mod1.asm"
MOD2_RAMSTART .equ MOD1_RAMEND
#include "mod2.asm"