The AX register value can't fit in a BYTE.


svn path=/trunk/; revision=64409
This commit is contained in:
Aleksandar Andrejevic 2014-09-30 15:07:42 +00:00
parent 73974d672f
commit 0e13044f26

View file

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