Author: spetreolle Date: Sun Nov 9 21:07:59 2014 New Revision: 65349
URL: http://svn.reactos.org/svn/reactos?rev=65349&view=rev Log: [NTVDM] Verbosity--;
Modified: trunk/reactos/subsystems/ntvdm/bios/bios32/bios32.c trunk/reactos/subsystems/ntvdm/dos/dem.c trunk/reactos/subsystems/ntvdm/dos/dos32krnl/dos.c trunk/reactos/subsystems/ntvdm/hardware/vga.c
Modified: trunk/reactos/subsystems/ntvdm/bios/bios32/bios32.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/ntvdm/bios/bios3... ============================================================================== --- trunk/reactos/subsystems/ntvdm/bios/bios32/bios32.c [iso-8859-1] (original) +++ trunk/reactos/subsystems/ntvdm/bios/bios32/bios32.c [iso-8859-1] Sun Nov 9 21:07:59 2014 @@ -298,7 +298,7 @@ * just call the DOS 32-bit initialization code. */
- DPRINT1("BiosBootstrapLoader -->\n"); + DPRINT("BiosBootstrapLoader -->\n");
/* Load DOS */ DosBootsectorInitialize(); @@ -315,7 +315,7 @@ Stack[STACK_CS] = 0x0000; Stack[STACK_IP] = 0x7C00;
- DPRINT1("<-- BiosBootstrapLoader\n"); + DPRINT("<-- BiosBootstrapLoader\n"); }
static VOID WINAPI BiosTimeService(LPWORD Stack)
Modified: trunk/reactos/subsystems/ntvdm/dos/dem.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/ntvdm/dos/dem.c?... ============================================================================== --- trunk/reactos/subsystems/ntvdm/dos/dem.c [iso-8859-1] (original) +++ trunk/reactos/subsystems/ntvdm/dos/dem.c [iso-8859-1] Sun Nov 9 21:07:59 2014 @@ -246,7 +246,7 @@ }
/* 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 @@ 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 @@ 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 @@ CHAR CommandLine[DOS_CMDLINE_LENGTH]; #endif
- DPRINT1("DosStart\n"); + DPRINT("DosStart\n");
/* * We succeeded, deregister the DOS Starting BOP
Modified: trunk/reactos/subsystems/ntvdm/dos/dos32krnl/dos.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/ntvdm/dos/dos32k... ============================================================================== --- trunk/reactos/subsystems/ntvdm/dos/dos32krnl/dos.c [iso-8859-1] (original) +++ trunk/reactos/subsystems/ntvdm/dos/dos32krnl/dos.c [iso-8859-1] Sun Nov 9 21:07:59 2014 @@ -916,7 +916,7 @@ 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,
Modified: trunk/reactos/subsystems/ntvdm/hardware/vga.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/ntvdm/hardware/v... ============================================================================== --- trunk/reactos/subsystems/ntvdm/hardware/vga.c [iso-8859-1] (original) +++ trunk/reactos/subsystems/ntvdm/hardware/vga.c [iso-8859-1] Sun Nov 9 21:07:59 2014 @@ -1452,7 +1452,7 @@ 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);