diff options
author | 2020-08-31 07:54:10 -0400 | |
---|---|---|
committer | 2020-08-31 07:54:10 -0400 | |
commit | 1e109660789fc87558f665ce531249fb1c1eddf4 (patch) | |
tree | e398deb6ca3fd9336e8310eb4844b16c6e38b4b3 | |
parent | 8bdc60e97e515684ceea83f7be68343f30139a78 (diff) |
apple2: Uthernet works in the //e too. [R. Belmont]
-rw-r--r-- | src/mame/drivers/apple2e.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mame/drivers/apple2e.cpp b/src/mame/drivers/apple2e.cpp index 67c9ee88241..891e8dbe22c 100644 --- a/src/mame/drivers/apple2e.cpp +++ b/src/mame/drivers/apple2e.cpp @@ -175,6 +175,7 @@ MIG RAM page 2 $CE02 is the speaker/slot bitfield and $CE03 is the paddle/accele #include "bus/a2bus/computereyes2.h" #include "bus/a2bus/byte8251.h" #include "bus/a2bus/a2iwm.h" +#include "bus/a2bus/uthernet.h" #include "bus/a2gameio/gameio.h" #include "bus/rs232/rs232.h" @@ -4500,6 +4501,7 @@ static void apple2_cards(device_slot_interface &device) device.option_add("applesurance", A2BUS_APPLESURANCE); /* Applesurance Diagnostic Controller */ device.option_add("byte8251", A2BUS_BYTE8251); /* BYTE Magazine 8251 serial card */ device.option_add("cmsscsi", A2BUS_CMSSCSI); /* CMS Apple II SCSI Card */ + device.option_add("uthernet", A2BUS_UTHERNET); /* A2RetroSystems Uthernet card */ } static void apple2eaux_cards(device_slot_interface &device) |