diff options
Diffstat (limited to 'bcopy32.inc')
-rw-r--r-- | bcopy32.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bcopy32.inc b/bcopy32.inc index 28b70fad..0f01284a 100644 --- a/bcopy32.inc +++ b/bcopy32.inc @@ -135,8 +135,8 @@ bcopy: push eax cmp esi,-1 je .bzero - cmp esi,edi ; If source > destination, we might - ja .reverse ; have to copy backwards + cmp esi,edi ; If source < destination, we might + jb .reverse ; have to copy backwards .forward: mov al,cl ; Save low bits |