summaryrefslogtreecommitdiff
path: root/kernel/arch/i386/interrupts.s
blob: 672bc101c91184b8e0bb7a3c48f0f7ec37e7f5e0 (plain)
1
2
3
4
5
6
7
8
9
.global enable_interrupts
enable_interrupts:
	sti
	ret

.global disable_interrupts
disable_interrupts:
	cli
	ret