From bd28ad2fe44f70d75b00db38049e1db55acab032 Mon Sep 17 00:00:00 2001 From: Jasmine Iwanek Date: Fri, 31 May 2024 00:45:33 -0400 Subject: [PATCH] Fix trivial bug in EMS5150 --- src/device/isamem.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/device/isamem.c b/src/device/isamem.c index fea9c0d88..09374f30d 100644 --- a/src/device/isamem.c +++ b/src/device/isamem.c @@ -499,6 +499,7 @@ isamem_init(const device_t *info) case ISAMEM_EMS5150_CARD: /* Micro Mainframe EMS-5150(T) */ dev->base_addr = device_get_config_hex16("base"); dev->total_size = device_get_config_int("size"); + dev->start_addr = 0; dev->frame_addr = 0xD0000; dev->flags |= (FLAG_EMS | FLAG_CONFIG); break;