| 13 | #endif |
| 14 | |
| 15 | static __inline unsigned char inb(int port) |
| 16 | { |
| 17 | unsigned char data; |
| 18 | __asm __volatile("inb %w1,%0" : "=a" (data) : "d" (port)); |
| 19 | return data; |
| 20 | } |
| 21 | static __inline unsigned char inb_p(unsigned short port) |
| 22 | { |
| 23 | unsigned char _v; |
no outgoing calls
no test coverage detected