mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[NTVDM]
The AX register value can't fit in a BYTE. svn path=/trunk/; revision=64409
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user