| 302 | } |
| 303 | |
| 304 | static __inline void |
| 305 | outb(u_int port, u_char data) |
| 306 | { |
| 307 | __asm __volatile("outb %0, %w1" : : "a" (data), "Nd" (port)); |
| 308 | } |
| 309 | |
| 310 | static __inline void |
| 311 | outl(u_int port, u_int data) |
no outgoing calls
no test coverage detected