summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hexbus/hexbus.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hexbus/hexbus.cpp')
-rw-r--r--src/devices/bus/hexbus/hexbus.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/hexbus/hexbus.cpp b/src/devices/bus/hexbus/hexbus.cpp
index 53e8a40e7c0..110739b5fcf 100644
--- a/src/devices/bus/hexbus/hexbus.cpp
+++ b/src/devices/bus/hexbus/hexbus.cpp
@@ -150,17 +150,17 @@
// Devices
#include "hx5102.h"
-#define LOG_LINES (1U<<1) // Line changes
-#define LOG_ENABLED (1U<<2) // Enabled
+#define LOG_LINES (1U << 1) // Line changes
+#define LOG_ENABLED (1U << 2) // Enabled
-#define VERBOSE ( LOG_GENERAL )
+#define VERBOSE (LOG_GENERAL)
#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 { namespace hexbus {
+namespace bus::hexbus {
device_hexbus_interface::device_hexbus_interface(const machine_config &mconfig, device_t &device) :
device_interface(device, "hexbus")
@@ -428,7 +428,7 @@ int hexbus_chained_device::data_bit(int n)
// ------------------------------------------------------------------------
-} } // end namespace bus::hexbus
+} // end namespace bus::hexbus
void hexbus_options(device_slot_interface &device)
{