소스 검색

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

git-svn-id: trunk@41011 -
nickysn 6 년 전
부모
커밋
39db7fd9d9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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