source: trunk/minix/lib/i386/misc/io_outsb.s@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 341 bytes
Line 
1! outsb() - Output a byte array Author: Kees J. Bot
2! 18 Mar 1996
3! void outsb(U16_t port, void *buf, size_t count);
4
5.sect .text
6.define _outsb
7_outsb:
8 push ebp
9 mov ebp, esp
10 cld
11 push esi
12 mov edx, 8(ebp) ! port
13 mov esi, 12(ebp) ! buf
14 mov ecx, 16(ebp) ! byte count
15 rep outsb ! output many bytes
16 pop esi
17 pop ebp
18 ret
Note: See TracBrowser for help on using the repository browser.