summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hexbus/hexbus.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2021-09-07 23:15:50 +1000
committer Vas Crabb <vas@vastheman.com>2021-09-07 23:15:50 +1000
commit142f96023889fc2c09a01318947f81cdb0e0f424 (patch)
tree39135ee898b7213937dbc779528f3550982b6a5a /src/devices/bus/hexbus/hexbus.cpp
parentd6873bfaccee1b1c5bb8e6ec9127c4ed860d8564 (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/hexbus/hexbus.cpp')
-rw-r--r--src/devices/bus/hexbus/hexbus.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/hexbus/hexbus.cpp b/src/devices/bus/hexbus/hexbus.cpp
index b9dcfd29ef8..40189262457 100644
--- a/src/devices/bus/hexbus/hexbus.cpp
+++ b/src/devices/bus/hexbus/hexbus.cpp
@@ -158,7 +158,7 @@
#include "logmacro.h"
// Hexbus instance
-DEFINE_DEVICE_TYPE_NS(HEXBUS, bus::hexbus, hexbus_device, "hexbus", "Hexbus connector")
+DEFINE_DEVICE_TYPE(HEXBUS, bus::hexbus::hexbus_device, "hexbus", "Hexbus connector")
namespace bus::hexbus {