From a4d749210d4a628552717e9d3fe3ebf7ed84f1f0 Mon Sep 17 00:00:00 2001 From: Joursoir Date: Mon, 30 Aug 2021 12:37:38 +0000 Subject: move the arch specific code for port IO to the correct place --- arch/x86/include/asm/io.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 arch/x86/include/asm/io.h (limited to 'arch/x86/include/asm/io.h') diff --git a/arch/x86/include/asm/io.h b/arch/x86/include/asm/io.h new file mode 100644 index 0000000..02009d5 --- /dev/null +++ b/arch/x86/include/asm/io.h @@ -0,0 +1,15 @@ +#ifndef ASM_X86_IO_H +#define ASM_X86_IO_H + +#include + +static inline void outb(uint16_t port, uint8_t data) +{ + asm volatile ( + "out %0,%1" + : /* no output */ + : "a" (data), "d" (port) + ); +} + +#endif /* ASM_X86_IO_H */ -- cgit v1.2.3-18-g5258