From 5c9509d51da4c1f56355ba4007b145e94e6b9c13 Mon Sep 17 00:00:00 2001 From: Yishay Vadai Date: Sat, 23 Sep 2023 20:57:33 +0300 Subject: [PATCH] Init LPT before Network to fix PLIP mode. --- src/86box.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/86box.c b/src/86box.c index 5865823c8..5637415e3 100644 --- a/src/86box.c +++ b/src/86box.c @@ -1071,11 +1071,13 @@ pc_reset_hard_init(void) /* Reset and reconfigure the Sound Card layer. */ sound_card_reset(); + /* Initialize parallel devices. */ + /* note: PLIP LPT side has to be initialized before the network side */ + lpt_devices_init(); + /* Reset and reconfigure the Network Card layer. */ network_reset(); - lpt_devices_init(); - /* Reset and reconfigure the serial ports. */ serial_standalone_init(); serial_passthrough_init();