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