repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
slightly more accurate and verbose sanity checking
[minix3.git]
/
lib
/
i386
/
misc
/
io_outl.s
blob
1a414448e1bc5b2f241a9a9fce3ad323d9417d3c
1
!
outl
() -
Output one dword Author
:
Kees J. Bot
2
!
18
Mar
1996
3
!
void outl
(
U16_t port
,
u32_t value
)
;
4
5
.sect .text
6
.define _outl
7
_outl
:
8
push ebp
9
mov ebp
,
esp
10
mov edx
,
8
(
ebp
) !
port
11
mov eax
,
8
+
4
(
ebp
) !
value
12
out dx
!
output
1
dword
13
pop ebp
14
ret