Browse Source

* use xchg, instead of mov, because it's 1 byte shorter

git-svn-id: trunk@36345 -
nickysn 8 years ago
parent
commit
e8a09fba0d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      rtl/i8086/int32p.inc

+ 2 - 2
rtl/i8086/int32p.inc

@@ -37,7 +37,7 @@ begin
     xchg    ax,si
     mul     cx
     add     si,ax
-    mov     ax,di
+    xchg    ax,di  { 1 byte shorter than mov }
     mul     cx
     add     dx,si
     mov     word[result],ax
@@ -79,7 +79,7 @@ begin
     jnz     @@overflow
     add     si,ax
     jc      @@overflow
-    mov     ax,di
+    xchg    ax,di  { 1 byte shorter than mov }
     mul     cx
     add     dx,si
     jc      @@overflow