#include "interrupts/Interrupts.h" void Interrupts::disable() { asm volatile("cli"); } void Interrupts::enable() { asm volatile("sti"); }