| 233 | } |
| 234 | |
| 235 | static __inline void |
| 236 | outb(u_int port, u_char data) |
| 237 | { |
| 238 | __asm __volatile("outb %0, %w1" : : "a" (data), "Nd" (port)); |
| 239 | } |
| 240 | |
| 241 | static __inline void |
| 242 | outl(u_int port, u_int data) |
no outgoing calls
no test coverage detected