Browse Source

* only load the low byte from the page parameter in SetVisual200_350

git-svn-id: trunk@41011 -
nickysn 6 years ago
parent
commit
39db7fd9d9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/graph/src/msdos/graph.pp

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

@@ -2150,7 +2150,7 @@ End;
   begin
     if page > HardwarePages then exit;
     asm
-      mov ax,[page]    { only lower byte is supPorted. }
+      mov al, byte ptr [page]    { only lower byte is supported. }
       mov ah,05h
       push ds
       push bp