diff options
| author | 2021-09-07 23:15:50 +1000 | |
|---|---|---|
| committer | 2021-09-07 23:15:50 +1000 | |
| commit | 142f96023889fc2c09a01318947f81cdb0e0f424 (patch) | |
| tree | 39135ee898b7213937dbc779528f3550982b6a5a /src/devices/bus/ti8x/bitsocket.cpp | |
| parent | d6873bfaccee1b1c5bb8e6ec9127c4ed860d8564 (diff) | |
-Reworked device type definition macros a little and added more Doxygen.
* Reworked device type definition macros to eliminate one level of
indirection when using device types by name.
* Fixed a potential initialisation order issue that could affect device
parent ROMs.
* Eliminated the need for DEFINE_DEVICE_TYPE_NS - just use
DEFINE_DEVICE_TYPE or DEFINE_DEVICE_TYPE_PRIVATE with fully-qualified
names.
* Changed device type aliases to static auto references in the headers.
* Added Doxygen comments for system/device definition macros and system
flags.
-Added ROM parents for m68705u3 and a2diskiing.
Diffstat (limited to 'src/devices/bus/ti8x/bitsocket.cpp')
| -rw-r--r-- | src/devices/bus/ti8x/bitsocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/ti8x/bitsocket.cpp b/src/devices/bus/ti8x/bitsocket.cpp index 00f0e1b4b8d..4168c09af91 100644 --- a/src/devices/bus/ti8x/bitsocket.cpp +++ b/src/devices/bus/ti8x/bitsocket.cpp @@ -5,7 +5,7 @@ #include "bitsocket.h" -DEFINE_DEVICE_TYPE_NS(TI8X_BIT_SOCKET, bus::ti8x, bit_socket_device, "ti8x_bitsock", "TI-8x Bit Socket") +DEFINE_DEVICE_TYPE(TI8X_BIT_SOCKET, bus::ti8x::bit_socket_device, "ti8x_bitsock", "TI-8x Bit Socket") namespace bus::ti8x { |
