diff options
author | 2024-09-13 06:30:17 +1000 | |
---|---|---|
committer | 2024-09-13 06:30:17 +1000 | |
commit | 21a89d5bbde517b0a0d1bd02d30335c63bd1f8d8 (patch) | |
tree | 8ee88398194fd5c6690c301a670281ff9ca9cdff /src/devices/machine/micomxe1a.h | |
parent | 98d6cb788eed33dc77d79eb3d53ccbc376ab7472 (diff) |
-igs/igs027a.cpp: Started encapsulating IGS 027A onboard peripherals.
-igs/igs_m027.cpp: Improved I/O:
* Hooked up inputs, hopper and counters for mgcs3.
* Hooked up mahjong keyboard for lhzb4.
* Added more RAM for extradrw.
-Bumped GitHub CI to three simuataneous jobs for Windows and Linux -
this should be OK with 16GB RAM.
-Added out-of-line destructors to various device classes that aren't
templates and aren't in anonymous namespaces.
Diffstat (limited to 'src/devices/machine/micomxe1a.h')
-rw-r--r-- | src/devices/machine/micomxe1a.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/machine/micomxe1a.h b/src/devices/machine/micomxe1a.h index e581f4f7cb4..972c159aa07 100644 --- a/src/devices/machine/micomxe1a.h +++ b/src/devices/machine/micomxe1a.h @@ -15,6 +15,7 @@ class micom_xe_1a_device : public device_t { public: micom_xe_1a_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock = 0) ATTR_COLD; + virtual ~micom_xe_1a_device(); auto buttons_handler() { return m_buttons_callback.bind(); } auto analog_handler() { return m_analog_callback.bind(); } |