diff options
Diffstat (limited to 'src/devices/bus/nubus/cards.cpp')
| -rw-r--r-- | src/devices/bus/nubus/cards.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/devices/bus/nubus/cards.cpp b/src/devices/bus/nubus/cards.cpp index b47a690ea65..e3b36d4610c 100644 --- a/src/devices/bus/nubus/cards.cpp +++ b/src/devices/bus/nubus/cards.cpp @@ -11,6 +11,8 @@ #include "8lc.h" #include "bootbug.h" +#include "enetlc.h" +#include "enetnbtp.h" #include "laserview.h" #include "nubus_48gc.h" #include "nubus_asntmc3b.h" @@ -49,7 +51,9 @@ void mac_nubus_cards(device_slot_interface &device) device.option_add("quadralink", NUBUS_QUADRALINK); // AE Quadralink serial card device.option_add("laserview", NUBUS_LASERVIEW); // Sigma Designs LaserView monochrome video card device.option_add("thunder4gx", NUBUS_THUNDERIVGX); // Radius Thunder IV GX video card + device.option_add("thunder4gx16", NUBUS_THUNDERIVGX); // Radius Thunder IV GX 1600 video card device.option_add("pc8", NUBUS_PROCOLOR8); // Lapis ProColor Server 8 video card + device.option_add("enetnbtp", NUBUS_ENETNBTP); // Apple Ethernet NB Twisted Pair } void powermac_nubus_cards(device_slot_interface &device) @@ -61,6 +65,8 @@ void powermac_nubus_cards(device_slot_interface &device) device.option_add("enetnb", NUBUS_APPLEENET); // Apple NuBus Ethernet device.option_add("quadralink", NUBUS_QUADRALINK); // AE Quadralink serial card device.option_add("thunder4gx", NUBUS_THUNDERIVGX); // Radius Thunder IV GX video card + device.option_add("thunder4gx16", NUBUS_THUNDERIVGX); // Radius Thunder IV GX 1600 video card + device.option_add("enetnbtp", NUBUS_ENETNBTP); // Apple Ethernet NB Twisted Pair } void mac_pds030_cards(device_slot_interface &device) @@ -79,13 +85,17 @@ void mac_pds030_cards(device_slot_interface &device) void mac_pdslc_cards(device_slot_interface &device) { device.option_add("macconilc", PDSLC_MACCONILC); // Asante MacCON i LC Ethernet card + device.option_add("enetlc", PDSLC_ENETLC); // Apple Ethernet LC + device.option_add("enetlctp", PDSLC_ENETLCTP); // Apple Ethernet LC Twisted Pair } -// cards for the LC PDS slot that only work in the original LC +// cards for the LC PDS slot that work in the original LC void mac_pdslc_orig_cards(device_slot_interface &device) { device.option_add("macconilc", PDSLC_MACCONILC); // Asante MacCON i LC Ethernet card device.option_add("ro8lc", PDSLC_COLORVUE8LC); // RasterOps ColorVue 8LC + device.option_add("enetlc", PDSLC_ENETLC); // Apple Ethernet LC + device.option_add("enetlctp", PDSLC_ENETLCTP); // Apple Ethernet LC Twisted Pair } // IIsi can take either one SE/30 PDS or one NuBus card @@ -109,7 +119,9 @@ void mac_iisi_cards(device_slot_interface &device) device.option_add("quadralink", NUBUS_QUADRALINK); // AE Quadralink serial card device.option_add("laserview", NUBUS_LASERVIEW); // Sigma Designs LaserView monochrome video card device.option_add("thunder4gx", NUBUS_THUNDERIVGX); // Radius Thunder IV GX video card + device.option_add("thunder4gx16", NUBUS_THUNDERIVGX); // Radius Thunder IV GX 1600 video card device.option_add("pc8", NUBUS_PROCOLOR8); // Lapis ProColor Server 8 video card + device.option_add("enetnbtp", NUBUS_ENETNBTP); // Apple Ethernet NB Twisted Pair device.option_add("cb264se30", PDS030_CB264SE30); // RasterOps Colorboard 264/SE30 device.option_add("pc816", PDS030_PROCOLOR816); // Lapis ProColor Server 8*16 PDS |
