rz80 0.1.1

Z80 chip family emulation
Documentation

Crates.io Build Status

rz80 (work in progress)

Z80 chip family emulator library written in Rust.

Documentation

Usage

# Cargo.toml
[dependencies]
rz80 = "0.1.0"

Examples

Run the ZEXDOC and ZEXALL conformance tests:

> cargo test --release -- --nocapture --ignored

Run the Z1013 home computer emulator:

> cargo run --release --example z1013

In the Z1013 emulator, start the BASIC interpreter with:

# J 300[Enter]

The BASIC interpreter will startup and ask for MEMORY SIZE, just hit Enter.

Enter and run a simple Hello World program:

>AUTO[Enter]
10 FOR I=0 TO 10[Enter]
20 PRINT "HELLO WORLD!"[Enter]
30 NEXT[Enter]
40 [Escape]
OK
>LIST[Enter]
...
>RUN[Enter]
...
>BYE[Enter]