The PS/2 Model 80 memory expansion board initialization now correctly sets up the RAM mappings;

The per-device log functions now all call pclog().
This commit is contained in:
OBattler
2017-12-05 23:35:35 +01:00
parent 5f8900e3cd
commit 772955bf59
17 changed files with 39 additions and 44 deletions

View File

@@ -458,12 +458,12 @@ static void
kbdlog(const char *fmt, ...)
{
#ifdef ENABLE_KEYBOARD_AT_LOG
va_list ap;
if (keyboard_at_do_log) {
va_list ap;
va_start(ap, fmt);
vfprintf(stdlog, fmt, ap);
pclog(fmt, ap);
va_end(ap);
fflush(stdlog);
}
#endif
}