Skip to content

Latest commit

 

History

History
79 lines (67 loc) · 1.56 KB

File metadata and controls

79 lines (67 loc) · 1.56 KB
title __outwordstring | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-tools
ms.tgt_pltfrm
ms.topic article
f1_keywords
__outwordstring
dev_langs
C++
helpviewer_keywords
rep outsw instruction
__outwordstring intrinsic
outsw instruction
ms.assetid b470c7a0-1de9-4370-886a-b2c3a1f842f4
caps.latest.revision 11
author corob-msft
ms.author corob
manager ghogen
translation.priority.ht
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
ru-ru
zh-cn
zh-tw
translation.priority.mt
cs-cz
pl-pl
pt-br
tr-tr

__outwordstring

Microsoft Specific

Generates the rep outsw instruction, which sends Count words starting at Buffer out the I/O port specified by Port.

Syntax

void __outwordstring(   
   unsigned short Port,   
   unsigned short* Buffer,   
   unsigned long Count   
);  

Parameters

[in] Port
The port to send the data to.

[in] Buffer
A pointer to the data to be sent out the specified port.

[in] Count
The number of words to send.

Requirements

Intrinsic Architecture
__outwordstring x86, [!INCLUDEvcprx64]

Header file <intrin.h>

Remarks

This routine is only available as an intrinsic.

END Microsoft Specific

See Also

Compiler Intrinsics