Handles code associated with pushing the stack frame associated with an interrupt entry. Note: Currently most of the code is implemented by Fuzzware.
(&mut self, cpu: &mut Cpu)
| 593 | /// |
| 594 | /// Note: Currently most of the code is implemented by Fuzzware. |
| 595 | pub fn push_stack(&mut self, cpu: &mut Cpu) { |
| 596 | self.masking.mask_entry(self, cpu) |
| 597 | } |
| 598 | |
| 599 | /// Handles code associated with poping the stack frame after returning from an interrupt. |
| 600 | /// |
no test coverage detected