]> 4ch.mooo.com Git - 16.git/blob - src/lib/16_dbg.c
====----==== reverted undid what i did today ====
[16.git] / src / lib / 16_dbg.c
1 #include "src/lib/16_dbg.h"\r
2 \r
3 #ifdef __DEBUG__\r
4 #ifdef __DEBUG_MM__\r
5 boolean dbg_debugmm=0;\r
6 #endif\r
7 #ifdef __DEBUG_PM__\r
8 boolean dbg_debugpm=0;\r
9 #endif\r
10 #ifdef __DEBUG_CA__\r
11 boolean dbg_debugca=0;\r
12 #endif\r
13 #ifdef __DEBUG_InputMgr__\r
14 boolean dbg_testkeyin=0,dbg_testcontrolnoisy=0,dbg_nointest=0;\r
15 #endif\r
16 #ifdef __DEBUG_MAP__\r
17 boolean dbg_maptext=0;\r
18 byte *dbg_mapdata;\r
19 #endif\r
20 #endif\r
21 \r
22 #ifdef __WATCOMC__\r
23 // TODO: Could we also provide a build mode to emit debug to the "Bochs E9 hack?"\r
24 #ifdef DEBUGSERIAL\r
25 # include <stdarg.h>\r
26 # include <stdlib.h>\r
27 # include <stdio.h>\r
28 \r
29 unsigned char _DEBUG_INITed = 0;\r
30 struct info_8250 *_DEBUG_uart = NULL;\r
31 \r
32 int _DEBUG_INIT() {\r
33         if (!_DEBUG_INITed) {\r
34                 unsigned int i;\r
35                 uint16_t port;\r
36 \r
37                 if (!init_8250()) return 0;\r
38 \r
39                 // what does the BIOS say the serial ports are?\r
40                 probe_8250_bios_ports();\r
41                 for (i=0;i < bios_8250_ports;i++) {\r
42                         port = get_8250_bios_port(i);\r
43                         if (port == 0) continue;\r
44                         probe_8250(port);\r
45                 }\r
46 \r
47                 // what about the standard serial ports?\r
48                 for (i=0;i < (sizeof(standard_8250_ports)/sizeof(standard_8250_ports[0]));i++) {\r
49                         port = standard_8250_ports[i];\r
50                         if (port == 0) continue;\r
51                         probe_8250(port);\r
52                 }\r
53 \r
54                 // pick the first port, which is probably COM1\r
55                 if (base_8250_ports == 0) return 0; // FIXME: You know "base_8250_ports" is probably a bad variable name for the max entries in info_8250_port[]\r
56                 _DEBUG_uart = &info_8250_port[0];\r
57                 _DEBUG_INITed = 1;\r
58 \r
59                 // init the COM port.\r
60                 // in DOSBox-X, the "log" mode will receive our text and print it into the log file\r
61                 // on real hardware, our text will likely go over a null modem cable to another PC running a serial terminal program like PuTTY or minicom.\r
62                 // if nothing is connected, then the bytes go off into the ether to get lost and life goes on.\r
63                 uart_8250_enable_interrupt(_DEBUG_uart,0);      // disable interrupts\r
64                 uart_8250_set_FIFO(_DEBUG_uart,0x07);           // enable FIFO (why not?), also clear xmit/recv FIFO buffers, set threshhold to 1 byte\r
65                 uart_8250_set_MCR(_DEBUG_uart,3);               // RTS and DTS on\r
66                 uart_8250_set_line_control(_DEBUG_uart,UART_8250_LCR_8BIT | UART_8250_LCR_PARITY); // 8 bit 1 stop bit odd parity\r
67                 uart_8250_set_baudrate(_DEBUG_uart,uart_8250_baud_to_divisor(_DEBUG_uart,9600)); // 9600 baud\r
68         }\r
69 \r
70         return _DEBUG_INITed;\r
71 }\r
72 \r
73 void _DEBUG(const char *msg) {\r
74         if (_DEBUG_uart != NULL) {\r
75                 char c;\r
76 \r
77                 while ((c=(*msg++)) != 0/*NUL*/) {\r
78                         while (!uart_8250_can_write(_DEBUG_uart)); // wait for the UART to indicate readiness for our output\r
79                         uart_8250_write(_DEBUG_uart,(uint8_t)c); // then write it\r
80                 }\r
81         }\r
82 }\r
83 \r
84 static char _DEBUGF_TMP[256];\r
85 \r
86 void _DEBUGF(const char *fmt,...) {\r
87         va_list va;\r
88 \r
89         va_start(va,fmt);\r
90         vsnprintf(_DEBUGF_TMP,sizeof(_DEBUGF_TMP),fmt,va);\r
91         _DEBUG(_DEBUGF_TMP);\r
92         va_end(va);\r
93 }\r
94 #endif  //watcomc\r
95 #endif\r