11 lines
126 B
ArmAsm
11 lines
126 B
ArmAsm
.code32
|
|
|
|
.global enable_interrupts
|
|
enable_interrupts:
|
|
sti
|
|
ret
|
|
|
|
.global io_wait
|
|
io_wait:
|
|
outb %al, $0x80
|
|
ret |