aboutsummaryrefslogtreecommitdiff
path: root/src/debugcon.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/debugcon.zig')
-rw-r--r--src/debugcon.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/debugcon.zig b/src/debugcon.zig
index 2049d22..94045ab 100644
--- a/src/debugcon.zig
+++ b/src/debugcon.zig
@@ -2,7 +2,6 @@ pub inline fn inb(port: u16) u8 {
return asm volatile ("inb %[port], %[result]"
: [result] "={al}" (-> u8),
: [port] "{dx}" (port),
- : "dx", "al"
);
}
@@ -11,7 +10,6 @@ pub inline fn outb(port: u16, data: u8) void {
:
: [port] "{dx}" (port),
[data] "{al}" (data),
- : "dx", "al"
);
}