blob: eac9331af94027ce80589d9383233f8f40a769ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <stdint.h>
static inline void port_out8(uint16_t port, uint8_t val) {
asm volatile("outb %0, %1" : : "a" (val), "Nd" (port));
}
static inline void port_out16(uint16_t port, uint16_t val) {
asm volatile("outw %0, %1" : : "a" (val), "Nd" (port));
}
static inline uint8_t port_in8(uint16_t port) {
uint8_t val;
asm volatile("inb %1, %0" : "=a" (val) : "Nd" (port));
return val;
}
static inline uint16_t port_in16(uint16_t port) {
uint16_t val;
asm volatile("inw %1, %0" : "=a" (val) : "Nd" (port));
return val;
}
|