diff options
| author | David Greenman <dg@FreeBSD.org> | 1995-01-04 20:42:25 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1995-01-04 20:42:25 +0000 |
| commit | b5ba45f6f3e4f97320fe94902e3f3533eb8debfd (patch) | |
| tree | 316aed2ec0135ce932f5515a1d93d0d72408a4b9 /sys/amd64/include | |
| parent | e228c81074f9fccfc9e6b965c3fe6a8108cded72 (diff) | |
Notes
Diffstat (limited to 'sys/amd64/include')
| -rw-r--r-- | sys/amd64/include/cpufunc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/amd64/include/cpufunc.h b/sys/amd64/include/cpufunc.h index 9dd0bf035b5ca..f678863ec1c40 100644 --- a/sys/amd64/include/cpufunc.h +++ b/sys/amd64/include/cpufunc.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cpufunc.h,v 1.29 1994/11/14 15:04:06 bde Exp $ + * $Id: cpufunc.h,v 1.30 1994/11/15 14:55:25 bde Exp $ */ /* @@ -219,7 +219,7 @@ outsb(u_int port, void *addr, size_t cnt) { __asm __volatile("cld; rep; outsb" : : "d" (port), "S" (addr), "c" (cnt) - : "di", "cx"); + : "si", "cx"); } static __inline void @@ -227,7 +227,7 @@ outsw(u_int port, void *addr, size_t cnt) { __asm __volatile("cld; rep; outsw" : : "d" (port), "S" (addr), "c" (cnt) - : "di", "cx"); + : "si", "cx"); } static __inline void @@ -235,7 +235,7 @@ outsl(u_int port, void *addr, size_t cnt) { __asm __volatile("cld; rep; outsl" : : "d" (port), "S" (addr), "c" (cnt) - : "di", "cx"); + : "si", "cx"); } static __inline void |
