blob: 559566ba52a9185781ff4fd9c9d091d0dbbc7f60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef VBOXDLOG_H
#define VBOXDLOG_H
#include <conio.h>
/** Logs a single character to the VBox debug message port. */
static inline void vbox_log_putc(char c)
{
outp(0x504, c);
}
#endif // VBOXDLOG_H
|