aboutsummaryrefslogtreecommitdiff
path: root/i686/sys/control.h
blob: 1b38472598e0ca96b2eb07f840750917f86dd947 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

static inline void
abort()
{
  asm volatile(R"(cli
h: hlt
jmp h)");
}

static inline void
enable_interrupts()
{
  asm volatile("sti");
}

static inline void
disable_interrupts()
{
  asm volatile("cli");
}