Clear direction flag. Too many folks were losing...

This commit is contained in:
brezak 1993-09-19 19:16:27 +00:00
parent d0b8b43cf2
commit 1ee5779f11
2 changed files with 6 additions and 4 deletions

View File

@ -32,12 +32,12 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: bcopy.s,v 1.8 1993/08/26 02:13:48 mycroft Exp $
* $Id: bcopy.s,v 1.9 1993/09/19 19:16:27 brezak Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$Id: bcopy.s,v 1.8 1993/08/26 02:13:48 mycroft Exp $"
.asciz "$Id: bcopy.s,v 1.9 1993/09/19 19:16:27 brezak Exp $"
#endif /* LIBC_RCS and not lint */
#include "DEFS.h"
@ -83,4 +83,5 @@ ENTRY(bcopy)
movsl
popl %edi
popl %esi
cld
ret

View File

@ -32,12 +32,12 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: memmove.s,v 1.9 1993/08/26 02:13:53 mycroft Exp $
* $Id: memmove.s,v 1.10 1993/09/19 19:16:28 brezak Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
.asciz "$Id: memmove.s,v 1.9 1993/08/26 02:13:53 mycroft Exp $"
.asciz "$Id: memmove.s,v 1.10 1993/09/19 19:16:28 brezak Exp $"
#endif /* LIBC_RCS and not lint */
#include "DEFS.h"
@ -86,4 +86,5 @@ TWOENTRY(memmove,memcpy)
popl %eax
popl %edi
popl %esi
cld
ret