pub trait InterruptHandler {
    // Required method
    fn interrupt(&mut self, maskable: bool, set_brk: bool);
}
Expand description

Handle interrupts by setting the applicable flags, pushing the program counter onto the stack, and loading the interrupt vector into the program counter.

Required Methods§

source

fn interrupt(&mut self, maskable: bool, set_brk: bool)

Implementors§