aboutsummaryrefslogtreecommitdiffstats
path: root/bootloader/misc.s
blob: c2286073e89ab59054080c8955fb5a78a9020134 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
.text
.global BootDisableInterrupts

BootDisableInterrupts:
  pushq %rbp
  movq %rsp, %rbp
  cli
  popq %rbp
  ret