(emu_handle: Arc<Mutex<EmuHandle>>)
| 23 | rebinding_fast_forward: bool, |
| 24 | } |
| 25 | |
| 26 | impl CpuHandler { |
| 27 | pub fn new(emu_handle: Arc<Mutex<EmuHandle>>, fast_forward_key: Arc<Mutex<Key>>) -> Self { |
| 28 | Self { |
| 29 | emu_handle, |
| 30 | b_address: UpperHexString::default(), |
| 31 | breakpoint_combo: BreakpointKind::Equal, |
| 32 | cycle_to_skip_custom_value: 5000, |
| 33 | speed: 1.0, |
| 34 | fast_forward_key, |
| 35 | rebinding_fast_forward: false, |
| 36 | } |
| 37 | } |
nothing calls this directly
no outgoing calls
no test coverage detected