My first experiment using Rust.
An emulator for the Intel 8080 processor capable of running the original Space Invaders game from 1978.
Requirements:
Build:
cargo build
To directly run the program, substitute build
with run
.
Requirements:
- Rust & cargo
- OpenAL and libsndfile for the ears package to work.
- Space Invaders audio files
- Download the files (They can be easily found online)
- Move the files into the
sound
directory - Make sure they are named correctly:
0.wav, ... , 8.wav
Build:
cargo build --features audio
To directly run the program, substitute build
with run
.
- piston_window
- image
- ears (optional, for audio support)