Mirror of CollapseOS
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
Virgil Dupras 650481f849 z80/8086: extract 2>R code from stable ABI zone 3 роки тому
..
hw Fix makefile build-from-clean-repo glitches 3 роки тому
libz80 @ 8a1f935daa Move "emul" folder to root 4 роки тому
.gitignore emul: build from "cvm" instead of from itself 3 роки тому
Makefile z80/8086: extract 2>R code from stable ABI zone 3 роки тому
README.md emul: update README 3 роки тому
emul.c emul: make blk operations much faster 4 роки тому
emul.h emul: add live register stats in the corner 4 роки тому
forth.c emul: make blk operations much faster 4 роки тому
xcomp.fs Add HERESTART xcomp config 3 роки тому

README.md

emul

This folder contains a couple of tools running under the libz80 emulator.

Requirements

You need ncurses to build the forth executable. In debian-based distros, it's libncurses5-dev.

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 the forth interpreter.

Usage

The ./forth executable here works like the one in /cvm, except that it runs under an emulated z80 machine instead of running natively. Refer to /cvm/README.md for details.

Not real hardware

./forth doesn't try to emulate real hardware because the goal here is to facilitate “high level” development.

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.