From 95f2fffaf83ea904cd25a03bc32f37b75e46918d Mon Sep 17 00:00:00 2001 From: nickysn Date: Tue, 22 Jan 2019 14:34:47 +0000 Subject: [PATCH] * replaced bl with al in the final bit read in GetPixel16 git-svn-id: trunk@40992 - --- packages/graph/src/msdos/graph.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/graph/src/msdos/graph.pp b/packages/graph/src/msdos/graph.pp index e359301099..e08a89c530 100644 --- a/packages/graph/src/msdos/graph.pp +++ b/packages/graph/src/msdos/graph.pp @@ -1731,10 +1731,10 @@ end; { read plane 0 } dec ax { Select plane to read } out dx,al - mov bl,es:[si] - and bl,bh + mov al,es:[si] + and al,bh rol ah,1 - or ah,bl { save bit in AH } + or ah,al { save bit in AH } inc cx rol ah,cl