| 242 | } |
| 243 | |
| 244 | static __inline u_char |
| 245 | inb(u_int port) |
| 246 | { |
| 247 | u_char data; |
| 248 | |
| 249 | __asm __volatile("inb %w1, %0" : "=a" (data) : "Nd" (port)); |
| 250 | return (data); |
| 251 | } |
| 252 | |
| 253 | static __inline u_int |
| 254 | inl(u_int port) |
no outgoing calls
no test coverage detected