Files
RockOS/kernel/common_stubs.S
2026-06-14 00:34:11 -05:00

16 lines
206 B
ArmAsm

.code32
.section .text
.global disable_interrupts
disable_interrupts:
cli
ret
.global enable_interrupts
enable_interrupts:
sti
ret
.global io_wait
io_wait:
outb %al, $0x80
ret