| 173 | } |
| 174 | |
| 175 | static __inline u_char |
| 176 | inb(u_int port) |
| 177 | { |
| 178 | u_char data; |
| 179 | |
| 180 | __asm __volatile("inb %w1, %0" : "=a" (data) : "Nd" (port)); |
| 181 | return (data); |
| 182 | } |
| 183 | |
| 184 | static __inline u_int |
| 185 | inl(u_int port) |
no outgoing calls
no test coverage detected