Removed unnecessary jcxz's.

git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@629 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Bart Oldeman 2003-06-30 18:43:28 +00:00
parent d60b01e511
commit 27ee8b1c74

View File

@ -118,7 +118,6 @@ MEMCPY:
domemcpy:
; And do the built-in byte copy, but do a 16-bit transfer
; whenever possible.
jcxz memcpy_return
shr cx,1
rep movsw
jnc memcpy_return
@ -183,7 +182,6 @@ FMEMSET:
domemset:
mov ah, al
jcxz pascal_return
shr cx,1
rep stosw
jnc pascal_return