summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/electron/exp.cpp
diff options
context:
space:
mode:
author Nigel Barnes <Pernod70@users.noreply.github.com>2020-08-23 22:12:48 +0100
committer Nigel Barnes <Pernod70@users.noreply.github.com>2020-08-23 22:15:36 +0100
commit2027f49eb30507cd45bba823e41a7567d9e3b9e6 (patch)
tree52ef6b47ae24571d26e0534ba821ffcb6f3a56c8 /src/devices/bus/electron/exp.cpp
parentae568f3f60eff2f0f44c540825456c31cb20231f (diff)
bus/electron: Added the P.R.E.S. AP1/AP6 and First Byte Printer Interface devices.
Diffstat (limited to 'src/devices/bus/electron/exp.cpp')
-rw-r--r--src/devices/bus/electron/exp.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/devices/bus/electron/exp.cpp b/src/devices/bus/electron/exp.cpp
index 93197dba97d..82fdf6fc462 100644
--- a/src/devices/bus/electron/exp.cpp
+++ b/src/devices/bus/electron/exp.cpp
@@ -107,7 +107,7 @@ void electron_expansion_slot_device::expbus_w(offs_t offset, uint8_t data)
// slot devices
#include "fbjoy.h"
-//#include "fbprint.h"
+#include "fbprint.h"
#include "mode7.h"
//#include "lebox.h"
#include "plus1.h"
@@ -123,8 +123,10 @@ void electron_expansion_slot_device::expbus_w(offs_t offset, uint8_t data)
void electron_expansion_devices(device_slot_interface &device)
{
+ device.option_add("ap1", ELECTRON_AP1);
+ device.option_add("ap6", ELECTRON_AP6);
device.option_add("fbjoy", ELECTRON_FBJOY);
- //device.option_add("fbprint", ELECTRON_FBPRINT);
+ device.option_add("fbprint", ELECTRON_FBPRINT);
device.option_add("mode7", ELECTRON_MODE7);
//device.option_add("lebox", ELECTRON_LEBOX);
device.option_add("plus1", ELECTRON_PLUS1);