* just call the DOS 32-bit initialization code.
*/
- DPRINT1("BiosBootstrapLoader -->\n");
+ DPRINT("BiosBootstrapLoader -->\n");
/* Load DOS */
DosBootsectorInitialize();
Stack[STACK_CS] = 0x0000;
Stack[STACK_IP] = 0x7C00;
- DPRINT1("<-- BiosBootstrapLoader\n");
+ DPRINT("<-- BiosBootstrapLoader\n");
}
static VOID WINAPI BiosTimeService(LPWORD Stack)
}
/* 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)
{
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));
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 );
CHAR CommandLine[DOS_CMDLINE_LENGTH];
#endif
- DPRINT1("DosStart\n");
+ DPRINT("DosStart\n");
/*
* We succeeded, deregister the DOS Starting BOP
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,
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);