summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/a2bus/laser128.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/a2bus/laser128.h')
-rw-r--r--src/devices/bus/a2bus/laser128.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/devices/bus/a2bus/laser128.h b/src/devices/bus/a2bus/laser128.h
index 3ea016ad983..9858e3889f7 100644
--- a/src/devices/bus/a2bus/laser128.h
+++ b/src/devices/bus/a2bus/laser128.h
@@ -27,6 +27,9 @@ public:
// construction/destruction
a2bus_laser128_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ // special config API
+ void set_parallel_printer(bool bPrinterIsParallel) { m_bParPrinter = bPrinterIsParallel; }
+
protected:
a2bus_laser128_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
@@ -45,6 +48,7 @@ protected:
uint8_t *m_rom;
uint8_t m_slot7_ram[0x800];
int m_slot7_bank;
+ bool m_bParPrinter;
private:
int m_slot7_ram_bank;