2个稳定版本
2.0.0 | 2023年11月1日 |
---|---|
1.1.0 |
|
1.0.0 | 2023年11月1日 |
#163 in 模拟器
37KB
886 行
Simple6502
一个简单的MOS 6502模拟器,使用Rust语言编写。
不需要std,不需要分配器,只需核心库。
let mut emu = Emulator::default()
.with_ram(*include_bytes!("example.bin"))
.at(0x400);
print!("\x1B[2J");
while !emu.status.r#break() {
emu.step();
print!("\x1B[1;1H{emu:?}");
}
println!("\nInterrupted");
依赖项
~180KB