mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 04:20:46 +00:00
allow oring multiple DebugPort values
svn path=/trunk/; revision=13345
This commit is contained in:
parent
d2f23650e6
commit
c6e6ddf2d4
1 changed files with 10 additions and 9 deletions
|
@ -46,9 +46,9 @@ U32 DebugPrintMask = DPRINT_WARNING|DPRINT_FILESYSTEM|DPRINT_MEMORY|DPRINT_LINU
|
|||
U32 DebugPrintMask = 0;
|
||||
#endif
|
||||
|
||||
#define SCREEN 0
|
||||
#define RS232 1
|
||||
#define BOCHS 2
|
||||
#define SCREEN 1
|
||||
#define RS232 2
|
||||
#define BOCHS 4
|
||||
|
||||
#define COM1 1
|
||||
#define COM2 2
|
||||
|
@ -60,6 +60,7 @@ U32 DebugPrintMask = 0;
|
|||
U32 DebugPort = RS232;
|
||||
//U32 DebugPort = SCREEN;
|
||||
//U32 DebugPort = BOCHS;
|
||||
//U32 DebugPort = SCREEN|BOCHS;
|
||||
U32 ComPort = COM1;
|
||||
//U32 BaudRate = 19200;
|
||||
U32 BaudRate = 115200;
|
||||
|
@ -81,7 +82,7 @@ VOID DebugPrintChar(UCHAR Character)
|
|||
DebugStartOfLine = TRUE;
|
||||
}
|
||||
|
||||
if (DebugPort == RS232)
|
||||
if (DebugPort & RS232)
|
||||
{
|
||||
if (Character == '\n')
|
||||
{
|
||||
|
@ -89,11 +90,11 @@ VOID DebugPrintChar(UCHAR Character)
|
|||
}
|
||||
Rs232PortPutByte(Character);
|
||||
}
|
||||
else if (DebugPort == BOCHS)
|
||||
if (DebugPort & BOCHS)
|
||||
{
|
||||
WRITE_PORT_UCHAR((PUCHAR)BOCHS_OUTPUT_PORT, Character);
|
||||
}
|
||||
else
|
||||
if (DebugPort & SCREEN)
|
||||
{
|
||||
MachConsPutChar(Character);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue