RustZX

RustZX CI Crates.io License Discord

logo

ZX Spectrum emulator written in Rust - Watch this video showcase (v0.9.x) - Read CHANGELOG.md for info on the latest version changes

Features

Install

  1. Sure that you have C compiller and CMake to build bundled sdl2
  2. (Linux-specific) Install required development packages: [libasound2-dev]
  3. Install it with cargo bash cargo install rustzx

How to use

bash rustzx --help # Show help rustzx test.tap # Autodetect file type and run in 48K mode rustzx --ay test.tap # Run in 48K mode with AY sound chip rustzx -m128 --tape test128.tap # Run in 128K mode with tape rustzx --rom tester.rom -s3 # Run with custom rom and 3x screen scaling rustzx --nofastload test.tap # Run without fast tape loading rustzx --mouse test.tap # Run with Kempston mouse support For loading tape in 48K mode, press j then Ctrl+p twice, as on real Spectrum. You should see LOAD "" on emulator's screen, then press Enter (in 128K mode just press enter). In --nofastload mode, press Insert to play the tape and Delete to stop

If you have choppy audio, try --sound-latency option with bigger values.

Default key bindings:

In joy keyboard layer mode (F9)

Screenshots

References

Many resources were used to find out, how to buildthis emulator. Huge thanks to the following resources which helped to figure out a lot of defails about ZX Spectrum. - Of course z80.info - Decoding Z80 opcodes - Opcodes list - CPU user manual - CPU architecture - Interrupt behaviour - Z80 undocumented documented - Instruction table from ClrHome - "Floating bus explained!" by Ramsoft - 16K / 48K ZX Spectrum Reference - 128K ZX Spectrum Reference - Z80 hardware organization - disassembler.io online disassembler - Cool z80 assembler zasm - Diagnostic ROM by Phill - zx-modules.de - great resource, check it out! - speccy.info - Harlequin - And many other great material, which helped me to make rustzx! - FUSE emulator source for finding out correct timings - YAZE test suite - z80test test suite - ROM routines

ROM's

Emulator contains ROMs, created by by Sinclair Research Ltd (now owned by Amstrad plc), Amstrad has given permission to distribute their ROM's in conjunction with emulators. In RustZX these ROMs included in source of the core emulator library mod rustzx_core::zx::roms. Embedded roms can be opted-out from the core library by disabling feature embedded-roms.