diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-01-06 09:18:15 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-01-06 09:18:15 +0000 |
commit | a4f31dafa7a736b72b9c443e4ac6618382db748f (patch) | |
tree | 69d534234f23837a6477ad1392f7e1eaac89ccd1 /DuetPkg | |
parent | 3d0134ba7be28fc14805f9144fce5aae0937b360 (diff) | |
download | edk2-a4f31dafa7a736b72b9c443e4ac6618382db748f.tar.gz edk2-a4f31dafa7a736b72b9c443e4ac6618382db748f.tar.bz2 edk2-a4f31dafa7a736b72b9c443e4ac6618382db748f.zip |
Remove debug code.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7196 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'DuetPkg')
-rw-r--r-- | DuetPkg/DxeIpl/DxeInit.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/DuetPkg/DxeIpl/DxeInit.c b/DuetPkg/DxeIpl/DxeInit.c index 2f4e5b9f82..078ba1a1e0 100644 --- a/DuetPkg/DxeIpl/DxeInit.c +++ b/DuetPkg/DxeIpl/DxeInit.c @@ -111,19 +111,6 @@ EnterDxeMain ( );
VOID
-WaitForKey ()
-{
- PrintString("Press Enter to continue ...\n");
- _asm {
- mov al, 20h
- out 64h, al
- AGAIN: in al, 60h
- cmp al, 1ch
- jnz AGAIN
- }
-}
-
-VOID
DxeInit (
IN EFILDRHANDOFF *Handoff
)
@@ -312,7 +299,7 @@ Returns: PrintString("\n");
EFI_DEADLOOP();
*/
- WaitForKey ();
+
ClearScreen();
PrintString("\n\n\n\n\n\n\n\n\n\n");
PrintString(" WELCOME TO EFI WORLD!\n");
|