aboutsummaryrefslogtreecommitdiff
path: root/libc/cpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/cpu.c')
-rw-r--r--libc/cpu.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libc/cpu.c b/libc/cpu.c
index a9e7241..1f0b7e4 100644
--- a/libc/cpu.c
+++ b/libc/cpu.c
@@ -28,10 +28,9 @@ u32 inl(u16 port)
void insl(u16 port, void *addr, int n)
{
- __asm__ volatile("cld; rep insl"
- : "=D"(addr), "=c"(n)
- : "d"(port), "0"(addr), "1"(n)
- : "memory", "cc");
+ __asm__ volatile("rep insl" ::"c"(n), // Count
+ "d"(port), // Port #
+ "D"(addr)); // Buffer
}
void outb(u16 port, u8 data)