aboutsummaryrefslogtreecommitdiffstats
path: root/src/cpu.zig
blob: 58f5f40e23611aee7d9f1e2378691c60b83c4541 (plain)
1
2
3
4
5
6
7
8
pub fn interrupt_disable() void {
    asm volatile("cpsid i");
}

pub fn interrupt_enable() void {
    asm volatile("cpsie i");
}