Author: hbelusca
Date: Tue Dec 3 23:50:33 2013
New Revision: 61210
URL:
http://svn.reactos.org/svn/reactos?rev=61210&view=rev
Log:
[NTVDM]: Code formatting only.
Modified:
branches/ntvdm/subsystems/ntvdm/pic.c
branches/ntvdm/subsystems/ntvdm/ps2.c
Modified: branches/ntvdm/subsystems/ntvdm/pic.c
URL:
http://svn.reactos.org/svn/reactos/branches/ntvdm/subsystems/ntvdm/pic.c?re…
==============================================================================
--- branches/ntvdm/subsystems/ntvdm/pic.c [iso-8859-1] (original)
+++ branches/ntvdm/subsystems/ntvdm/pic.c [iso-8859-1] Tue Dec 3 23:50:33 2013
@@ -199,7 +199,7 @@
if (Number >= 0 && Number < 8)
{
- /* Check if any of the higher-priorirty interrupts are busy */
+ /* Check if any of the higher-priority interrupts are busy */
for (i = 0; i <= Number ; i++)
{
if (MasterPic.InServiceRegister & (1 << Number)) return;
@@ -226,7 +226,7 @@
return;
}
- /* Check if any of the higher-priorirty interrupts are busy */
+ /* Check if any of the higher-priority interrupts are busy */
if (MasterPic.InServiceRegister != 0) return;
for (i = 0; i <= Number; i++)
{
Modified: branches/ntvdm/subsystems/ntvdm/ps2.c
URL:
http://svn.reactos.org/svn/reactos/branches/ntvdm/subsystems/ntvdm/ps2.c?re…
==============================================================================
--- branches/ntvdm/subsystems/ntvdm/ps2.c [iso-8859-1] (original)
+++ branches/ntvdm/subsystems/ntvdm/ps2.c [iso-8859-1] Tue Dec 3 23:50:33 2013
@@ -96,7 +96,6 @@
{
KeyboardResponse = KeyboardConfig;
KeyboardReadResponse = TRUE;
-
break;
}
@@ -114,7 +113,6 @@
/* These commands require a response */
KeyboardResponse = Command;
KeyboardWriteResponse = TRUE;
-
break;
}
@@ -122,7 +120,6 @@
case 0xA7:
{
// TODO: Mouse support
-
break;
}
@@ -130,7 +127,6 @@
case 0xA8:
{
// TODO: Mouse support
-
break;
}
@@ -139,7 +135,6 @@
{
KeyboardResponse = 0;
KeyboardReadResponse = TRUE;
-
break;
}
@@ -148,7 +143,6 @@
{
KeyboardResponse = 0x55;
KeyboardReadResponse = TRUE;
-
break;
}
@@ -185,7 +179,6 @@
{
/* Stop the simulation */
VdmRunning = FALSE;
-
break;
}
}
@@ -245,7 +238,6 @@
{
/* Push the data byte to the keyboard queue */
KeyboardQueuePush(Data);
-
break;
}
@@ -323,7 +315,6 @@
/* Keyboard IRQ */
PicInterruptRequest(1);
-
break;
}
@@ -331,7 +322,6 @@
{
// TODO: NOT IMPLEMENTED
UNIMPLEMENTED;
-
break;
}