Remove MDA support

svn path=/trunk/; revision=14784
This commit is contained in:
Alex Ionescu 2005-04-23 18:00:59 +00:00
parent 9a7799d8b8
commit 1d0c612395

View file

@ -152,11 +152,6 @@ KdInitSystem(ULONG BootPhase,
p2 += 4;
KdDebugState |= KD_DEBUG_FILELOG;
}
else if (!_strnicmp(p2, "MDA", 3) && BootPhase > 0)
{
p2 += 3;
KdDebugState |= KD_DEBUG_MDA;
}
}
}
else if (!_strnicmp(p2, "KDSERIAL", 8) && BootPhase > 0)
@ -243,9 +238,6 @@ KdInitSystem(ULONG BootPhase,
if (KdDebugState & KD_DEBUG_FILELOG && BootPhase > 0)
DebugLogInit();
if (KdDebugState & KD_DEBUG_MDA && BootPhase > 0)
KdInitializeMda();
}
@ -353,9 +345,6 @@ KdpPrintString(PANSI_STRING String)
if (KdDebugState & KD_DEBUG_FILELOG)
DebugLogWrite(pch);
if (KdDebugState & KD_DEBUG_MDA)
KdPrintMda(pch);
return((ULONG)String->Length);
}