A small LC-3 virtual machine written in Rust, based on: https://www.jmeiners.com/lc3-vm/
cargo buildcargo run -- path/to/program.objYou can also pass multiple images:
cargo run -- image1.obj image2.objThis project includes a Makefile target that bootstraps tools, assembles lc3-rogue, and runs it:
make rogue-runControls in game: w, a, s, d.
cargo test