From 951276a7d8a2ad09f3eedfdcd23d05c9cc82a1ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Tue, 28 Jan 2014 17:26:26 +0000 Subject: [PATCH] [NTVDM]: Remove erroneous comments. svn path=/branches/ntvdm/; revision=61861 --- subsystems/ntvdm/bios/bios.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/subsystems/ntvdm/bios/bios.c b/subsystems/ntvdm/bios/bios.c index 8c827eee7b7..fd539aca0bd 100644 --- a/subsystems/ntvdm/bios/bios.c +++ b/subsystems/ntvdm/bios/bios.c @@ -289,19 +289,16 @@ static VOID BiosHwSetup(VOID) IOWriteB(PIT_COMMAND_PORT, 0x34); IOWriteB(PIT_DATA_PORT(0), 0x00); IOWriteB(PIT_DATA_PORT(0), 0x00); - // PitSetGate(0, TRUE); /* Initialize PIT Counter 1 */ IOWriteB(PIT_COMMAND_PORT, 0x74); IOWriteB(PIT_DATA_PORT(1), 0x00); IOWriteB(PIT_DATA_PORT(1), 0x00); - // PitSetGate(1, TRUE); /* Initialize PIT Counter 2 */ IOWriteB(PIT_COMMAND_PORT, 0xB4); IOWriteB(PIT_DATA_PORT(2), 0x00); IOWriteB(PIT_DATA_PORT(2), 0x00); - // PitSetGate(2, FALSE); // PitSetGate(2, TRUE); EnableHwIRQ(0, BiosTimerIrq); }