Crates.io | lc3-rs |
lib.rs | lc3-rs |
version | 0.6.0 |
source | src |
created_at | 2019-05-04 09:58:31.320962 |
updated_at | 2020-09-04 08:25:58.229623 |
description | A LC-3(Little Computer 3) virtual machine |
homepage | |
repository | https://github.com/cr0sh/lc3-rs |
max_upload_size | |
id | 131980 |
size | 57,446 |
Efficient LC-3 simulator for any platforms, written in pure Rust.
Copyright (C) 2019 Nam Junghyun. (ska827@snu.ac.kr)
Currently there is no useful frontends (e.g. benchmarkers, debuggers) is implemented. You can run simple LC-3 calculator which implements this specification with cargo run --bin calc
.
You can use lc3::vm
to get your code to handle LC-3 instructions. Please refer to docs.
There are two useful optional features for debugging, register-trace
and instruction-trace
.
If register-trace
feature is enabled, pc
, ir
, register
will be printed into stderr after each steps are executed. Note that pc
will represent an actual location of the instruction executed(PC is automatically incremented after fetching instructions, therefore self.pc-1
), but register
values will be printed after the instruction is executed.
If instruction-trace
feature is enabled, contents of ir
will be printed into stderr as a parsed Instruction
enum before the instruction is executed.
Additionally, on Windows, CRLF line endings will be automatically converted into LF. If you prefer not to do this, enable disable-crlf-compat-windows
feature when building. On other platforms, this feature does nothing.
GPLv2, also refer to a copyright notice for embedded lc3os.obj.