diff options
Diffstat (limited to 'sys/arch/i386/stand/libsa/biostime.S')
-rw-r--r-- | sys/arch/i386/stand/libsa/biostime.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/stand/libsa/biostime.S b/sys/arch/i386/stand/libsa/biostime.S index 0aafa0e2519..7c850cf849b 100644 --- a/sys/arch/i386/stand/libsa/biostime.S +++ b/sys/arch/i386/stand/libsa/biostime.S @@ -1,4 +1,4 @@ -/* $OpenBSD: biostime.S,v 1.7 1997/04/29 00:16:13 mickey Exp $ */ +/* $OpenBSD: biostime.S,v 1.8 1997/05/29 05:24:01 mickey Exp $ */ /* * Copyright (c) 1997 Michael Shalayeff @@ -45,7 +45,7 @@ * returns nonzero if failed */ ENTRY(usleep) - pushl %ecx + pushl %ebx movl 8(%esp), %ecx movw %cx, %dx @@ -58,7 +58,7 @@ ENTRY(usleep) movl %ah, %al 1: movzbl %al, %eax - popl %ecx + popl %ebx ret |