Handles code associated with poping the stack frame after returning from an interrupt. Note: Currently most of the code is implemented by Fuzzware.
(&mut self, cpu: &mut Cpu)
| 600 | /// |
| 601 | /// Note: Currently most of the code is implemented by Fuzzware. |
| 602 | pub fn pop_stack(&mut self, cpu: &mut Cpu) { |
| 603 | self.masking.mask_return(self, cpu) |
| 604 | } |
| 605 | |
| 606 | pub fn set_debug_info(&mut self, path: PathBuf) -> anyhow::Result<()> { |
| 607 | tracing::info!("Using debug info from: {}", path.display()); |
no test coverage detected