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

@@ -63,13 +63,13 @@ static void
pcilog(const char *format, ...)
{
#ifdef ENABLE_PCI_LOG
va_list ap;
if (pci_do_log)
{
va_list ap;
va_start(ap, format);
vfprintf(stdlog, format, ap);
pclog(format, ap);
va_end(ap);
fflush(stdlog);
}
#endif
}