mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 11:16:11 +00:00
[NTVDM]: Fix few file headers.
svn path=/trunk/; revision=68610
This commit is contained in:
parent
2abf03735c
commit
640136731e
9 changed files with 11 additions and 13 deletions
|
@ -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)
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue