[NTVDM]
authorAleksandar Andrejevic <aandrejevic@reactos.org>
Tue, 30 Sep 2014 15:07:42 +0000 (15:07 +0000)
committerAleksandar Andrejevic <aandrejevic@reactos.org>
Tue, 30 Sep 2014 15:07:42 +0000 (15:07 +0000)
The AX register value can't fit in a BYTE.

svn path=/trunk/; revision=64409

reactos/subsystems/ntvdm/bios/bios32/kbdbios32.c

index 0782f3e..7ef9a8b 100644 (file)
@@ -205,7 +205,8 @@ static VOID WINAPI BiosKeyboardIrq(LPWORD Stack)
      * In return, if CF is set we continue processing the scan code
      * stored in AL, and if not, we skip it.
      */
-    BYTE CF, AX;
+    BYTE CF;
+    WORD AX;
     CF = getCF();
     AX = getAX();