From 4b6e1034b3d7a3a80bc57f2f416193fc13b103fa Mon Sep 17 00:00:00 2001 From: Jess Lovelace Date: Wed, 2 Feb 2022 15:50:30 -0500 Subject: [PATCH] refactored upstream devices --- src/device/isamem.c | 5 +++++ src/device/isartc.c | 1 + src/sound/snd_ps1.c | 1 + src/sound/snd_pssj.c | 1 + 4 files changed, 8 insertions(+) diff --git a/src/device/isamem.c b/src/device/isamem.c index 3ec41103b..331004094 100644 --- a/src/device/isamem.c +++ b/src/device/isamem.c @@ -722,6 +722,7 @@ static const device_config_t genericxt_config[] = static const device_t genericxt_device = { "Generic PC/XT Memory Expansion", + "genericxt", DEVICE_ISA, ISAMEM_GENXT_CARD, isamem_init, isamem_close, NULL, @@ -777,6 +778,7 @@ static const device_config_t genericat_config[] = static const device_t genericat_device = { "Generic PC/AT Memory Expansion", + "genericat", DEVICE_ISA, ISAMEM_GENAT_CARD, isamem_init, isamem_close, NULL, @@ -832,6 +834,7 @@ static const device_config_t a6pak_config[] = static const device_t a6pak_device = { "AST SixPakPlus", + "a6pak", DEVICE_ISA, ISAMEM_A6PAK_CARD, isamem_init, isamem_close, NULL, @@ -1072,6 +1075,7 @@ static const device_config_t brat_config[] = static const device_t brat_device = { "BocaRAM/AT", + "brat", DEVICE_ISA, ISAMEM_BRAT_CARD, isamem_init, isamem_close, NULL, @@ -1277,6 +1281,7 @@ static const device_config_t iab_config[] = static const device_t iab_device = { "Intel AboveBoard", + "iab", DEVICE_ISA, ISAMEM_ABOVEBOARD_CARD, isamem_init, isamem_close, NULL, diff --git a/src/device/isartc.c b/src/device/isartc.c index c58448cef..e35f1ad9b 100644 --- a/src/device/isartc.c +++ b/src/device/isartc.c @@ -737,6 +737,7 @@ static const device_config_t a6pak_config[] = { static const device_t a6pak_device = { "AST SixPakPlus", + "a6pak", DEVICE_ISA, ISARTC_A6PAK, isartc_init, isartc_close, NULL, diff --git a/src/sound/snd_ps1.c b/src/sound/snd_ps1.c index e9455a327..dbca48e79 100644 --- a/src/sound/snd_ps1.c +++ b/src/sound/snd_ps1.c @@ -191,6 +191,7 @@ ps1snd_close(void *priv) const device_t ps1snd_device = { "IBM PS/1 Audio Card", + "ps1snd", 0, 0, ps1snd_init, ps1snd_close, NULL, diff --git a/src/sound/snd_pssj.c b/src/sound/snd_pssj.c index b6b86705d..703c19341 100644 --- a/src/sound/snd_pssj.c +++ b/src/sound/snd_pssj.c @@ -293,6 +293,7 @@ const device_t pssj_1e0_device = const device_t pssj_isa_device = { "Tandy PSSJ Clone", + "pssj_isa", DEVICE_ISA, 0, pssj_isa_init,