aboutsummaryrefslogtreecommitdiffstats
path: root/portio.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-09-27 06:02:49 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-09-27 06:02:49 -0400
commitd43d7caf15a01dd9c2ef1d9e975df3ef7c4e9204 (patch)
treeaaf1f0f3a18b6f7b3fc25022e06941a9fb4fa612 /portio.hpp
wip: initial commit
Diffstat (limited to 'portio.hpp')
-rw-r--r--portio.hpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/portio.hpp b/portio.hpp
new file mode 100644
index 0000000..0a10651
--- /dev/null
+++ b/portio.hpp
@@ -0,0 +1,24 @@
+#ifndef PORTIO_HPP
+#define PORTIO_HPP
+
+#include <cstdint>
+
+inline void outb(std::uint16_t port, std::uint8_t val)
+{
+ asm volatile("outb %b0, %w1" :: "a"(val), "Nd"(port) : "memory");
+}
+
+inline std::uint8_t inb(std::uint16_t port)
+{
+ std::uint8_t val;
+ asm volatile("inb %w1, %b0" : "=a"(val) : "Nd"(port) : "memory");
+ return val;
+}
+
+inline void io_wait()
+{
+ outb(0x80, 0);
+}
+
+#endif // PORTIO_HPP
+