Z80 chip family emulator library written in Rust.
# Cargo.toml
[dependencies]
rz80 = "0.1.1"
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]