blob: 5d056fce5f13e1c24baa3c5932606a7167535042 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|