diff options
author | Marvin Borner | 2020-09-21 22:00:40 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-21 22:00:40 +0200 |
commit | 0e9abba93578786e774525dfdf02c59194d3e1e5 (patch) | |
tree | e7df565030ebfc4d334ca142e005351ffd293cd6 /libc | |
parent | 02d97dcb1ea14c963219f22aed24b297e8366d05 (diff) |
Frustration
Diffstat (limited to 'libc')
-rw-r--r-- | libc/cpu.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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) |