memory/
cache.rs

1pub trait Cache {
2    fn flush_data_cache(&self);
3    fn flush_instruction_cache(&self);
4}