Verbosity--;


svn path=/trunk/; revision=65349
This commit is contained in:
Sylvain Petreolle 2014-11-09 21:07:59 +00:00
parent d85969ddd5
commit 5653be740f
4 changed files with 8 additions and 8 deletions

View file

@ -298,7 +298,7 @@ static VOID WINAPI BiosBootstrapLoader(LPWORD Stack)
* just call the DOS 32-bit initialization code.
*/
DPRINT1("BiosBootstrapLoader -->\n");
DPRINT("BiosBootstrapLoader -->\n");
/* Load DOS */
DosBootsectorInitialize();
@ -315,7 +315,7 @@ static VOID WINAPI BiosBootstrapLoader(LPWORD Stack)
Stack[STACK_CS] = 0x0000;
Stack[STACK_IP] = 0x7C00;
DPRINT1("<-- BiosBootstrapLoader\n");
DPRINT("<-- BiosBootstrapLoader\n");
}
static VOID WINAPI BiosTimeService(LPWORD Stack)

View file

@ -246,7 +246,7 @@ Command:
}
/* Start the process from the command line */
DPRINT1("Starting '%s' ('%s')...\n", AppName, CmdLine);
DPRINT("Starting '%s' ('%s')...\n", AppName, CmdLine);
Result = DosStartProcess(AppName, CmdLine, Env);
if (Result != ERROR_SUCCESS)
{
@ -294,7 +294,7 @@ VOID DosBootsectorInitialize(VOID)
ULONG_PTR Address = (ULONG_PTR)SEG_OFF_TO_PTR(0x0000, 0x7C00);
CHAR DosKernelFileName[] = ""; // No DOS file name, therefore we'll load DOS32
DPRINT1("DosBootsectorInitialize\n");
DPRINT("DosBootsectorInitialize\n");
/* Write the "bootsector" */
RtlCopyMemory((PVOID)Address, Bootsector1, sizeof(Bootsector1));
@ -330,7 +330,7 @@ static VOID WINAPI DosInitialize(LPWORD Stack)
LPCSTR DosKernelFileName = (LPCSTR)SEG_OFF_TO_PTR(getCS(), getIP());
setIP(getIP() + strlen(DosKernelFileName) + 1); // Skip it
DPRINT1("DosInitialize('%s')\n", DosKernelFileName);
DPRINT("DosInitialize('%s')\n", DosKernelFileName);
/* Register the DOS BOPs */
RegisterBop(BOP_DOS, DosSystemBop );
@ -414,7 +414,7 @@ static VOID WINAPI DosStart(LPWORD Stack)
CHAR CommandLine[DOS_CMDLINE_LENGTH];
#endif
DPRINT1("DosStart\n");
DPRINT("DosStart\n");
/*
* We succeeded, deregister the DOS Starting BOP

View file

@ -916,7 +916,7 @@ DWORD DosLoadExecutable(IN DOS_EXEC_TYPE LoadType,
PWORD RelocWord;
LPSTR CmdLinePtr = (LPSTR)CommandLine;
DPRINT1("DosLoadExecutable(%d, %s, %s, %s, 0x%08X, 0x%08X)\n",
DPRINT("DosLoadExecutable(%d, %s, %s, %s, 0x%08X, 0x%08X)\n",
LoadType,
ExecutablePath,
CommandLine,

View file

@ -1452,7 +1452,7 @@ static VOID VgaUpdateTextCursor(VOID)
Position.X = (SHORT)(Location % ScanlineSize);
Position.Y = (SHORT)(Location / ScanlineSize);
DPRINT1("VgaUpdateTextCursor: X = %d ; Y = %d\n", Position.X, Position.Y);
DPRINT("VgaUpdateTextCursor: X = %d ; Y = %d\n", Position.X, Position.Y);
/* Update the physical cursor */
SetConsoleCursorInfo(TextConsoleBuffer, &CursorInfo);