Explorar el Código

* use stosb instead of mov to draw the pixel inside the asm version of PutPixel320

git-svn-id: trunk@40923 -
nickysn hace 6 años
padre
commit
25c3981236
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/graph/src/msdos/graph.pp

+ 1 - 1
packages/graph/src/msdos/graph.pp

@@ -2270,7 +2270,7 @@ End;
       shr    ax, 1
       add    di, ax
       mov    al, byte ptr [Pixel]
-      mov    es:[di], al
+      stosb
 @@Done:
     end ['ax','di'];
  end;