LC-3 emulator in rust.
-
Load program in the hex (0x...) or the binary (0b...) text format.
cat some_program.txt | cargo run
- load bin format file.
- more I/O feature.
- complete cpu emulation for previledge and memory management.
Easily create binary file using xxd.
echo "41 42 00 ff" | xxd -r -p > output.bin