From e1a19a308e97391efb55df858828e81a8efd5696 Mon Sep 17 00:00:00 2001 From: OBattler Date: Mon, 16 Nov 2020 03:37:11 +0100 Subject: [PATCH] The POST card now supports port 10h for the PCjr. --- src/device/postcard.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/device/postcard.c b/src/device/postcard.c index c00af66cf..896f60b8b 100644 --- a/src/device/postcard.c +++ b/src/device/postcard.c @@ -117,6 +117,8 @@ postcard_init(const device_t *info) postcard_port = 0x190; /* ISA PS/2 machines */ else if (strstr(machines[machine].name, " IBM XT ")) postcard_port = 0x60; /* IBM XT */ + else if (strstr(machines[machine].name, "PCjr")) + postcard_port = 0x10; /* IBM PCjr */ else if (strstr(machines[machine].name, " Compaq ") && !(machines[machine].flags & MACHINE_PCI)) postcard_port = 0x84; /* ISA Compaq machines */ else