Write consecutive bytes starting at `address`.
(&mut self, address: u32, values: &[u8])
| 699 | |
| 700 | // Handle stepping mode (only if stepping) |
| 701 | if is_stepping { |
| 702 | self.steps_remaining -= 1; |
| 703 | if self.steps_remaining == 0 { |
| 704 | self.running = false; |
| 705 | self.send_event(EmuEvent::Paused { |
| 706 | reason: PauseReason::Step, |
| 707 | }); |
| 708 | self.send_state(); |
| 709 | return; |
no test coverage detected