minix/lib/i386/misc/io_inl.s
2005-04-21 14:53:53 +00:00

14 lines
217 B
ArmAsm
Executable file

! inl() - Input one dword Author: Kees J. Bot
! 18 Mar 1996
! unsigned inl(U16_t port);
.sect .text
.define _inl
_inl:
push ebp
mov ebp, esp
mov edx, 8(ebp) ! port
in dx ! read 1 dword
pop ebp
ret