__outbytestring
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at __outbytestring.
Microsoft Specific**
Generates the rep outsb
instruction,which sends the first Count
bytes of data pointed to by Buffer
to the port specified by Port
.
Syntax
void __outbytestring(
unsigned short Port,
unsigned char* Buffer,
unsigned long Count
);
Parameters
[in] Port
The port to send the data to.
[in] Buffer
The data to be sent out the specified port.
[in] Count
The number of bytes of data to be sent.
Requirements
Intrinsic | Architecture |
---|---|
__outbytestring |
x86, x64 |
Header file <intrin.h>
Remarks
This routine is only available as an intrinsic.