IO port is always 16 bit, even for inl
This commit is contained in:
parent
7b9bddad1b
commit
3a5d923bf1
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ Created: Jan 15, 1992 by Philip Homburg
|
||||||
|
|
||||||
unsigned inb(u16_t _port);
|
unsigned inb(u16_t _port);
|
||||||
unsigned inw(u16_t _port);
|
unsigned inw(u16_t _port);
|
||||||
unsigned inl(u32_t _port);
|
unsigned inl(u16_t _port);
|
||||||
void outb(u16_t _port, u8_t _value);
|
void outb(u16_t _port, u8_t _value);
|
||||||
void outw(u16_t _port, u16_t _value);
|
void outw(u16_t _port, u16_t _value);
|
||||||
void outl(u16_t _port, u32_t _value);
|
void outl(u16_t _port, u32_t _value);
|
||||||
|
|
Loading…
Reference in a new issue