Mirror of CollapseOS
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
Virgil Dupras 1a6a549857 Make the SPI Relay protocol support multiple devices hace 3 años
..
hw Make the SPI Relay protocol support multiple devices hace 3 años
libz80 @ 8a1f935daa Move "emul" folder to root hace 4 años
.gitignore emul: build from "cvm" instead of from itself hace 4 años
Makefile Replace "-ansi" with "-std=c89" in emul/Makefile hace 3 años
README.md emul: update README hace 4 años
emul.c emul: make blk operations much faster hace 4 años
emul.h emul: add live register stats in the corner hace 4 años
forth.c emul: make blk operations much faster hace 4 años
xcomp.fs Add HERESTART xcomp config hace 4 años

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.