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.
|
|
|
|
|
2020-05-23 22:24:39 +10:00
|
|
|
## Requirements
|
|
|
|
|
|
|
|
You need `ncurses` to build the `forth` executable. In debian-based distros,
|
|
|
|
it's `libncurses5-dev`.
|
|
|
|
|
2020-01-01 14:03:48 +11:00
|
|
|
## Not real hardware
|
|
|
|
|
|
|
|
In the few emulated apps described below, we don't try to emulate real hardware
|
2020-05-04 02:51:21 +10:00
|
|
|
because the goal here is to facilitate "high level" development.
|
2020-01-01 14:03:48 +11:00
|
|
|
|
|
|
|
These apps run on imaginary hardware and use many cheats to simplify I/Os.
|
|
|
|
|
|
|
|
For real hardware emulation (which helps developing drivers), see the `hw`
|
|
|
|
folder.
|
|
|
|
|
2019-05-21 02:11:45 +10:00
|
|
|
## Build
|
|
|
|
|
|
|
|
First, make sure that the `libz80` git submodule is checked out. If not, run
|
|
|
|
`git submodule init && git submodule update`.
|
|
|
|
|
2020-05-04 02:51:21 +10:00
|
|
|
After that, you can run `make` and it builds the `forth` interpreter.
|
2019-05-21 02:11:45 +10:00
|
|
|
|
2020-05-24 04:20:50 +10:00
|
|
|
## Usage
|
|
|
|
|
2020-05-23 22:24:39 +10:00
|
|
|
Run `./forth` to get the Collapse OS prompt. Type `0 LIST` for help.
|
2020-03-25 04:46:05 +11:00
|
|
|
|
2020-05-24 04:20:50 +10:00
|
|
|
The program is a curses interface with a limited, fixed size so that it can
|
|
|
|
provide a AT-XY interface (which is yet to implement).
|
|
|
|
|
2019-11-24 07:22:26 +11:00
|
|
|
## Problems?
|
|
|
|
|
2020-05-24 04:20:50 +10:00
|
|
|
If the `forth` executable works badly (hangs, spew garbage, etc.),
|
2019-11-24 07:22:26 +11:00
|
|
|
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
|
2020-05-04 02:51:21 +10:00
|
|
|
`forth.bin` is modified, try resetting it and then run `make clean all`. Things
|
|
|
|
should go better afterwards.
|
2019-11-24 07:22:26 +11:00
|
|
|
|
2020-05-24 04:20:50 +10:00
|
|
|
A modified `blkfs` can also break things (although even with a completely broken
|
|
|
|
blkfs, you should still get to prompt), you might want to run `make pack` to
|
|
|
|
ensure that the `blkfs` file is in sync with the contents of the `blk/` folder.
|
|
|
|
|
2019-11-24 07:22:26 +11:00
|
|
|
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.
|
2020-05-04 02:51:21 +10:00
|
|
|
|
|
|
|
[libz80]: https://github.com/ggambetta/libz80
|