mirror of https://github.com/E-Almqvist/eOS
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
206 B
11 lines
206 B
3 years ago
|
unsigned char port_byte_in(unsigned short port) {
|
||
|
unsigned char res;
|
||
|
__asm__("in %%dx, %%al" : "=a" (res) : "d" (port));
|
||
|
|
||
|
return res;
|
||
|
}
|
||
|
|
||
|
void port_byte_out(unsigned short port, unsigned char data) {
|
||
|
|
||
|
}
|