2019-05-10 02:58:41 +10:00
|
|
|
# emul
|
|
|
|
|
2019-05-21 02:11:45 +10:00
|
|
|
This folder contains a couple of tools running under the [libz80][libz80]
|
|
|
|
emulator.
|
|
|
|
|
|
|
|
## Build
|
|
|
|
|
|
|
|
First, make sure that the `libz80` git submodule is checked out. If not, run
|
|
|
|
`git submodule init && git submodule update`.
|
|
|
|
|
|
|
|
After that, you can run `make` and it builds all tools.
|
|
|
|
|
|
|
|
## shell
|
|
|
|
|
|
|
|
Running `shell/shell` runs the shell in an emulated machine. The goal of this
|
|
|
|
machine is not to simulate real hardware, but rather to serve as a development
|
|
|
|
platform. What we do here is we emulate the z80 part, the 64K memory space and
|
|
|
|
then hook some fake I/Os to stdin, stdout and a small storage device that is
|
|
|
|
suitable for Collapse OS's filesystem to run on.
|
2019-05-10 02:58:41 +10:00
|
|
|
|
|
|
|
Through that, it becomes easier to develop userspace applications for Collapse
|
|
|
|
OS.
|
|
|
|
|
|
|
|
We don't try to emulate real hardware to ease the development of device drivers
|
|
|
|
because so far, I don't see the advantage of emulation versus running code on
|
|
|
|
the real thing.
|
|
|
|
|
2019-11-25 02:24:15 +11:00
|
|
|
## bshell
|
|
|
|
|
|
|
|
The `basic` app is on its way to replace the shell. It is wrapped in the z80
|
|
|
|
emulator in the same way that the shell is and interacts with `cfsin` similarly.
|
|
|
|
|
2019-05-21 02:11:45 +10:00
|
|
|
## zasm
|
|
|
|
|
|
|
|
`zasm/zasm` is `apps/zasm` wrapped in an emulator. It is quite central to the
|
|
|
|
Collapse OS project because it's used to assemble everything, including itself!
|
|
|
|
|
|
|
|
The program takes no parameter. It reads source code from stdin and spits
|
|
|
|
binary in stdout. It supports includes and had both `apps/` and `kernel` folder
|
|
|
|
packed into a CFS that was statically included in the executable at compile
|
|
|
|
time.
|
2019-05-20 05:03:34 +10:00
|
|
|
|
2019-05-21 02:11:45 +10:00
|
|
|
The file `zasm/zasm.bin` is a compiled binary for `apps/zasm/glue.asm` and
|
|
|
|
`zasm/kernel.bin` is a compiled binary for `tools/emul/zasm/glue.asm`. It is
|
2019-05-20 05:03:34 +10:00
|
|
|
used to bootstrap the assembling process so that no assembler other than zasm
|
|
|
|
is required to build Collapse OS.
|
|
|
|
|
|
|
|
This binary is fed to libz80 to produce the `zasm/zasm` "modern" binary and
|
2019-05-21 02:11:45 +10:00
|
|
|
once you have that, you can recreate `zasm/zasm.bin` and `zasm/kernel.bin`.
|
2019-05-20 05:03:34 +10:00
|
|
|
|
|
|
|
This is why it's included as a binary in the repo, but yes, it's redundant with
|
|
|
|
the source code.
|
|
|
|
|
2019-05-21 02:11:45 +10:00
|
|
|
Those binaries can be updated with the `make updatebootstrap` command. If they
|
|
|
|
are up-to date and that zasm isn't broken, this command should output the same
|
|
|
|
binary as before.
|
2019-05-10 02:58:41 +10:00
|
|
|
|
2019-05-21 02:11:45 +10:00
|
|
|
## runbin
|
2019-05-10 02:58:41 +10:00
|
|
|
|
2019-05-21 02:11:45 +10:00
|
|
|
This is a very simple tool that reads binary z80 code from stdin, loads it in
|
|
|
|
memory starting at address 0 and then run the code until it halts. The exit
|
|
|
|
code of the program is the value of `A` when the program halts.
|
2019-05-10 02:58:41 +10:00
|
|
|
|
2019-05-21 02:11:45 +10:00
|
|
|
This is used for unit tests.
|
2019-11-24 07:22:26 +11:00
|
|
|
|
|
|
|
## Problems?
|
|
|
|
|
|
|
|
If the libz80-wrapped zasm executable works badly (hangs, spew garbage, etc.),
|
|
|
|
it's probably because you've broken your bootstrap binaries. They're easy to
|
|
|
|
mistakenly break. To verify if you've done that, look at your git status. If
|
|
|
|
`kernel.bin` or `zasm.bin` are modified, try resetting them and then run
|
|
|
|
`make clean all`. Things should go better afterwards.
|
|
|
|
|
|
|
|
If that doesn't work, there's also the nuclear option of `git reset --hard`
|
|
|
|
and `git clean -fxd`.
|
|
|
|
|
|
|
|
If that still doesn't work, it might be because the current commit you're on
|
|
|
|
is broken, but that is rather rare: the repo on Github is plugged on Travis
|
|
|
|
and it checks that everything is smooth.
|