(&mut self, byte: u8)
| 156 | pub fn memory_latency_config(&self) -> MemoryLatencyConfig { |
| 157 | self.bus.memory_latency_config() |
| 158 | } |
| 159 | |
| 160 | pub fn step(&mut self) -> Result<StepOutcome, VmError> { |
| 161 | match self.cpu.tick(&mut self.bus)? { |
| 162 | TickOutcome::Continue | TickOutcome::EcallSquash => { |
| 163 | if let Some(code) = self.bus.take_syscon_exit() { |
no test coverage detected