aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorMarvin Borner2020-09-21 22:00:40 +0200
committerMarvin Borner2020-09-21 22:00:40 +0200
commit0e9abba93578786e774525dfdf02c59194d3e1e5 (patch)
treee7df565030ebfc4d334ca142e005351ffd293cd6 /libc
parent02d97dcb1ea14c963219f22aed24b297e8366d05 (diff)
Frustration
Diffstat (limited to 'libc')
-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)