#模拟器 #mos #分配器 #std #6502

simple6502

一个极简单的MOS 6502模拟器,不需要std或分配器,无依赖项

2个稳定版本

2.0.0 2023年11月1日
1.1.0 2023年11月1日
1.0.0 2023年11月1日

#163 in 模拟器

MIT 许可证

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