mirror of
https://github.com/reactos/reactos.git
synced 2026-06-04 10:20:48 +08:00
[NTVDM]: Fix few file headers.
svn path=/trunk/; revision=68610
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
* COPYRIGHT: GPL - See COPYING in the top level directory
|
||||
* PROJECT: ReactOS Virtual DOS Machine
|
||||
* FILE: kbdbios32.c
|
||||
* PURPOSE: VDM Keyboard 32-bit BIOS
|
||||
* PURPOSE: VDM 32-bit PS/2 Keyboard BIOS
|
||||
* PROGRAMMERS: Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
|
||||
*/
|
||||
|
||||
@@ -209,10 +209,8 @@ 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;
|
||||
WORD AX;
|
||||
CF = getCF();
|
||||
AX = getAX();
|
||||
BYTE CF = getCF();
|
||||
WORD AX = getAX();
|
||||
|
||||
setCF(1);
|
||||
setAL(IOReadB(PS2_DATA_PORT));
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* COPYRIGHT: GPL - See COPYING in the top level directory
|
||||
* PROJECT: ReactOS Virtual DOS Machine
|
||||
* FILE: kbdbios32.h
|
||||
* PURPOSE: VDM Keyboard 32-bit BIOS
|
||||
* PURPOSE: VDM 32-bit PS/2 Keyboard BIOS
|
||||
* PROGRAMMERS: Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
|
||||
*/
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* COPYRIGHT: GPL - See COPYING in the top level directory
|
||||
* PROJECT: ReactOS Virtual DOS Machine
|
||||
* FILE: moubios32.h
|
||||
* PURPOSE: VDM Mouse 32-bit BIOS
|
||||
* PURPOSE: VDM 32-bit PS/2 Mouse BIOS
|
||||
* PROGRAMMERS: Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
|
||||
*/
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* COPYRIGHT: GPL - See COPYING in the top level directory
|
||||
* PROJECT: ReactOS Virtual DOS Machine
|
||||
* FILE: vidbios32.c
|
||||
* PURPOSE: VDM Video 32-bit BIOS
|
||||
* PURPOSE: VDM 32-bit Video BIOS
|
||||
* PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
||||
*
|
||||
* NOTE: All of the real code is in bios/vidbios.c
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* COPYRIGHT: GPL - See COPYING in the top level directory
|
||||
* PROJECT: ReactOS Virtual DOS Machine
|
||||
* FILE: vidbios32.h
|
||||
* PURPOSE: VDM Video 32-bit BIOS
|
||||
* PURPOSE: VDM 32-bit Video BIOS
|
||||
* PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
||||
*
|
||||
* NOTE: All of the real code is in bios/vidbios.c
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* COPYRIGHT: GPL - See COPYING in the top level directory
|
||||
* PROJECT: ReactOS Virtual DOS Machine
|
||||
* FILE: kbdbios.c
|
||||
* PURPOSE: VDM Keyboard BIOS Support Library
|
||||
* PURPOSE: VDM 32-bit PS/2 Keyboard BIOS Support Library
|
||||
* PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
||||
*/
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* COPYRIGHT: GPL - See COPYING in the top level directory
|
||||
* PROJECT: ReactOS Virtual DOS Machine
|
||||
* FILE: kbdbios.h
|
||||
* PURPOSE: VDM Keyboard BIOS Support Library
|
||||
* PURPOSE: VDM 32-bit PS/2 Keyboard BIOS Support Library
|
||||
* PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
||||
*/
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* COPYRIGHT: GPL - See COPYING in the top level directory
|
||||
* PROJECT: ReactOS Virtual DOS Machine
|
||||
* FILE: vidbios.c
|
||||
* PURPOSE: VDM Video BIOS Support Library
|
||||
* PURPOSE: VDM 32-bit Video BIOS Support Library
|
||||
* PROGRAMMERS: Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
|
||||
* Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
||||
*/
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
* COPYRIGHT: GPL - See COPYING in the top level directory
|
||||
* PROJECT: ReactOS Virtual DOS Machine
|
||||
* FILE: vidbios.h
|
||||
* PURPOSE: VDM Video BIOS Support Library
|
||||
* PURPOSE: VDM 32-bit Video BIOS Support Library
|
||||
* PROGRAMMERS: Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
|
||||
* Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user