| 51 | } |
| 52 | |
| 53 | static __inline void outb(int port, unsigned char data) |
| 54 | { |
| 55 | __asm __volatile("outb %0,%w1" : : "a" (data), "d" (port)); |
| 56 | } |
| 57 | |
| 58 | |
| 59 | static __inline void outb_p(char value, unsigned short port) |
no outgoing calls
no test coverage detected