From 93800bc6ab4795a80883e84ac097099ac5232a6e Mon Sep 17 00:00:00 2001 From: Curt Coder Date: Fri, 24 Mar 2023 11:02:09 +0200 Subject: [PATCH] sfd1001: Fix typo in ROM name. [Curt Coder] --- src/devices/bus/ieee488/c8050.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/devices/bus/ieee488/c8050.cpp b/src/devices/bus/ieee488/c8050.cpp index 60358de4944..9b85533befd 100644 --- a/src/devices/bus/ieee488/c8050.cpp +++ b/src/devices/bus/ieee488/c8050.cpp @@ -53,10 +53,10 @@ enum // DEVICE DEFINITIONS //************************************************************************** -DEFINE_DEVICE_TYPE(C8050, c8050_device, "c8050", "Commodore 8050") -DEFINE_DEVICE_TYPE(C8250, c8250_device, "c8250", "Commodore 8250") -DEFINE_DEVICE_TYPE(C8250LP, c8250lp_device, "c8250lp", "Commodore 8250LP") -DEFINE_DEVICE_TYPE(SFD1001, sfd1001_device, "sfd10001", "Commodore SFD-1001") +DEFINE_DEVICE_TYPE(C8050, c8050_device, "c8050", "Commodore 8050") +DEFINE_DEVICE_TYPE(C8250, c8250_device, "c8250", "Commodore 8250") +DEFINE_DEVICE_TYPE(C8250LP, c8250lp_device, "c8250lp", "Commodore 8250LP") +DEFINE_DEVICE_TYPE(SFD1001, sfd1001_device, "sfd1001", "Commodore SFD-1001") //-------------------------------------------------