diff options
author | Anton Kling <anton@kling.gg> | 2023-10-25 19:36:25 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-10-30 21:49:48 +0100 |
commit | 9ea708da24784d2f4960f0353b7a08c0c2c08145 (patch) | |
tree | 9d4f3ab1fbfb864ef14cd0d45ea014de0556db72 /cpu/io.h | |
parent | 730e065e0bba1394750b3172bb7e2f1c0fd42c73 (diff) |
RTL8139: Transmission and interrupts seem to magically work now.
This commit is done to preserve the functional code before I make new
changes.
Diffstat (limited to 'cpu/io.h')
-rw-r--r-- | cpu/io.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -6,6 +6,7 @@ extern void outw(uint16_t, uint16_t); extern void outl(uint16_t, uint32_t); extern uint32_t inl(uint16_t); +extern uint16_t inw(uint16_t); extern uint16_t inb(uint16_t); extern void rep_outsw(uint16_t count, uint16_t port, volatile void *addy); |