Sign in
cos
/
mirrors
/
cros
/
chromiumos
/
third_party
/
coreboot
/
9187925dfe2f3c5432449a745a7c24c5635f0b0b
/
.
/
src
/
device
/
oprom
/
include
/
io.h
blob: 96dd5721f8ad657bd305c2c7d080f8c6ad543e1c [
file
] [
log
] [
blame
]
#if CONFIG_ARCH_X86
#include
<arch/io.h>
#else
void
outb
(
u8 val
,
u16 port
);
void
outw
(
u16 val
,
u16 port
);
void
outl
(
u32 val
,
u16 port
);
u8 inb
(
u16 port
);
u16 inw
(
u16 port
);
u32 inl
(
u16 port
);
#endif