aboutsummaryrefslogtreecommitdiffstats
path: root/portio.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-09-30 11:08:46 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-09-30 11:08:46 -0400
commit19d9a04e36e7fb96eebe89e24311408460c29a70 (patch)
tree4d5f5ba595d5a5e2b59ce7b102c06b77c7be7721 /portio.hpp
parent85c8fd05f1a0c0224882c4fafa60003d3ef56cf3 (diff)
reorganize files
Diffstat (limited to 'portio.hpp')
-rw-r--r--portio.hpp72
1 files changed, 0 insertions, 72 deletions
diff --git a/portio.hpp b/portio.hpp
deleted file mode 100644
index 7636c14..0000000
--- a/portio.hpp
+++ /dev/null
@@ -1,72 +0,0 @@
-#ifndef PORTIO_HPP
-#define PORTIO_HPP
-
-#include <cstdint>
-
-inline void outb(std::uint16_t port, std::uint8_t val)
-{
- asm volatile("out %%al, %%dx" :: "a"(val), "Nd"(port) : "memory");
-}
-
-inline std::uint8_t inb(std::uint16_t port)
-{
- std::uint8_t val;
- asm volatile("inb %%dx" : "=a"(val) : "Nd"(port) : "memory");
- return val;
-}
-
-inline void outw(std::uint16_t port, std::uint16_t val)
-{
- asm volatile("out %%ax, %%dx" :: "a"(val), "Nd"(port) : "memory");
-}
-
-inline std::uint16_t inw(std::uint16_t port)
-{
- std::uint16_t val;
- asm volatile("inw %%dx" : "=a"(val) : "Nd"(port) : "memory");
- return val;
-}
-
-inline void io_wait()
-{
- outb(0x80, 0);
-}
-
-template<std::uint16_t Addr>
-struct Port
-{
- Port() = default;
-
- template<typename T>
- auto operator=(T val) noexcept {
- if constexpr (sizeof(T) == 1)
- outb(Addr, val);
- else if constexpr (sizeof(T) == 2)
- outw(Addr, val);
-
- return *this;
- }
-
- template<typename T>
- operator T() const noexcept {
- if constexpr (sizeof(T) == 1)
- return inb(Addr);
- else if constexpr (sizeof(T) == 2)
- return inw(Addr);
- }
-
- template<typename T>
- bool operator==(T val) const noexcept {
- T dat = *this;
- return dat == val;
- }
-
- template<typename T>
- auto operator&(T val) const noexcept {
- T dat = *this;
- return dat & val;
- }
-};
-
-#endif // PORTIO_HPP
-