The MDA and all Hercules cards now initialize a parallel port on 0x3BC.

This commit is contained in:
OBattler
2017-11-14 08:51:44 +01:00
parent 8f016a701e
commit 5592ca6d22
5 changed files with 14 additions and 1 deletions

View File

@@ -23,6 +23,7 @@
#include <wchar.h>
#include "../86box.h"
#include "../io.h"
#include "../lpt.h"
#include "../pit.h"
#include "../mem.h"
#include "../rom.h"
@@ -708,6 +709,8 @@ void *herculesplus_init(device_t *info)
mdacols[0x80][0][1] = mdacols[0x80][1][1] = 16;
mdacols[0x88][0][1] = mdacols[0x88][1][1] = 16;
lpt3_init(0x3BC);
return herculesplus;
}