A basic mos 6502 8 bit cpu emulator written in rust
- LDA (Immediate)
- Other instructions comming soon :D
NOTE: MAX Supported Ammount Of Ram: 64KB
let mut mos6502 = cpu::Mos6502::default();
let mut mem64k = memory::Memory::default();
mos6502.reset();mos6502.Execute(2, &mut mem64k);
mos6502.Execute(2, &mut mem64k);Inspired by: Dave poo's MOS6502 emu in C++ video series