From 8c4cd92490dec1956b4d894995bb14db7946011a Mon Sep 17 00:00:00 2001 From: Jasmine Iwanek Date: Sun, 19 Dec 2021 19:55:05 -0500 Subject: [PATCH] AT UART to 16450 --- src/machine/m_at.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/machine/m_at.c b/src/machine/m_at.c index dc47b6207..61f6f4752 100644 --- a/src/machine/m_at.c +++ b/src/machine/m_at.c @@ -47,6 +47,7 @@ #include <86box/dma.h> #include <86box/mem.h> #include <86box/device.h> +#include <86box/serial.h> #include <86box/fdd.h> #include <86box/fdc.h> #include <86box/fdc_ext.h> @@ -79,6 +80,9 @@ machine_at_common_init_ex(const machine_t *model, int type) else if (type == 0) device_add(&at_nvr_device); + device_add_inst(&ns16450_device, 1); + device_add_inst(&ns16450_device, 2); + standalone_gameport_type = &gameport_device; }