mos6502/core/src/periph/ram_chip.rs

6 lines
121 B
Rust

use crate::periph::rom_chip::RomChip;
pub trait RamChip: RomChip {
fn write(&mut self, offset: &u16, value: &u8);
}