mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[NTVDM]
The AX register value can't fit in a BYTE. svn path=/trunk/; revision=64409
This commit is contained in:
parent
73974d672f
commit
0e13044f26
1 changed files with 2 additions and 1 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in a new issue