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