make vfs & filesystems use failable copying
[minix3.git] / kernel / arch / i386 / io_inl.S
blobf4e0accf87272c2751b6d694384b5ed2ad19f7f9
1 /*      inl() - Input one dword                         Author: Kees J. Bot */
2 /*                                                              18 Mar 1996 */
3 /*      unsigned inl(U16_t port); */
4 #include <machine/asm.h>
6 ENTRY(inl)
7         push    %ebp
8         movl    %esp, %ebp
9         movl    8(%ebp), %edx   /* port */
10         inl     %dx     /* read 1 dword */
11         pop     %ebp
12         ret