blob: 60a90a35994fe9f3fa3c7706a79a58ec4e8da18c (
plain)
1
2
3
4
5
6
7
|
namespace teachos::arch::kernel::cpu
{
auto set_interrupt_flag() -> void { asm volatile("sti"); }
auto clear_interrupt_flag() -> void { asm volatile("cli"); }
} // namespace teachos::arch::kernel::cpu
|