Mirror of CollapseOS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
Virgil Dupras 14cc2fb785 parse: fix option word default value 5 年前
..
README.md Move /parts/z80 to /kernel 5 年前
acia.asm Move /parts/z80 to /kernel 5 年前
blockdev.asm fs: further adjust to previous blkdev refactoring 5 年前
blockdev_cmds.asm Fix error handling when writing to files in emulated shell 5 年前
core.asm blockdev: make implementors "random access" 5 年前
err.h blockdev: make implementors "random access" 5 年前
fs.asm sdc: make writing more solid 5 年前
fs_cmds.asm fs: fix broken fopn on id > 0 5 年前
mmap.asm blockdev: make implementors "random access" 5 年前
parse.asm parse: fix option word default value 5 年前
pgm.asm pgm: adapt to recent blkdev change 5 年前
sdc.asm Add apps/sdct 5 年前
shell.asm Make parseArgs not expect a leading space 5 年前
stdio.asm shell/stdio: decouple from blkdev (again) 5 年前
user.h.example zasm emul: bring back kernel/user distinction 5 年前

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.

As of now, the z80 assembler code is written to be assembled with scas, but this is going to change in the future as a new hosted assembler is written.

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 coould look like:

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

Code style

The asm code used in these parts is heavily dependent on what scas offers. I try to be as “low-tech” as possible because the implementation of the assembler to be implemented for the z80 will likely be more limited. For example, we don't use macros.