summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/isa_cards.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-04-17 21:57:39 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-04-17 21:57:39 -0400
commit06fc72cdcb5bd9774a19e978fa5e81cafe4ad9fa (patch)
treec3e5ff56e2f13da3022b771eb224be0d42124d83 /src/devices/bus/isa/isa_cards.cpp
parent2ecfd840e8476f80b72f046753427cf46601cd8d (diff)
Add skeleton devices for Tekram EISA SCSI contrllers [Metropoli BBS Archive, I-Shou University File Server]
Diffstat (limited to 'src/devices/bus/isa/isa_cards.cpp')
-rw-r--r--src/devices/bus/isa/isa_cards.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/devices/bus/isa/isa_cards.cpp b/src/devices/bus/isa/isa_cards.cpp
index 73e19da2397..25434cb785e 100644
--- a/src/devices/bus/isa/isa_cards.cpp
+++ b/src/devices/bus/isa/isa_cards.cpp
@@ -44,6 +44,7 @@
#include "ultra12f.h"
#include "ultra14f.h"
#include "ultra24f.h"
+#include "tekram_dc820.h"
// sound
#include "adlib.h"
@@ -193,4 +194,8 @@ void pc_isa16_cards(device_slot_interface &device)
device.option_add("ultra12f", ULTRA12F);
device.option_add("ultra14f", ULTRA14F);
device.option_add("ultra24f", ULTRA24F); // actually an EISA card
+ device.option_add("dc320b", TEKRAM_DC320B); // actually an EISA card
+ device.option_add("dc320e", TEKRAM_DC320E); // actually an EISA card
+ device.option_add("dc820", TEKRAM_DC820); // actually an EISA card
+ device.option_add("dc820b", TEKRAM_DC820B); // actually an EISA card
}