summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hp_dio/hp98603b.h
diff options
context:
space:
mode:
author dxl <41547105+hp9k@users.noreply.github.com>2018-10-07 16:52:39 +0200
committer R. Belmont <rb6502@users.noreply.github.com>2018-10-07 10:52:39 -0400
commitfce6de9d16ffdc52fcbd45321d7730f9066e08e4 (patch)
treee39bd95e95dfe72726cb4f2e05d46ef44b2a297c /src/devices/bus/hp_dio/hp98603b.h
parentf644d2098132777cecc1d7d2214fe5c38e3af26e (diff)
hp_dio: add namespace (nw) (#3939)
* hp_dio: add namespace (nw) * hp_dio: add comment on closing namespace brackets (nw)
Diffstat (limited to 'src/devices/bus/hp_dio/hp98603b.h')
-rw-r--r--src/devices/bus/hp_dio/hp98603b.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/devices/bus/hp_dio/hp98603b.h b/src/devices/bus/hp_dio/hp98603b.h
index 8d1780432a5..ea16286c98e 100644
--- a/src/devices/bus/hp_dio/hp98603b.h
+++ b/src/devices/bus/hp_dio/hp98603b.h
@@ -8,6 +8,9 @@
#include "hp_dio.h"
+namespace bus {
+ namespace hp_dio {
+
class dio16_98603b_device :
public device_t,
public device_dio16_card_interface
@@ -33,6 +36,9 @@ private:
uint8_t *m_rom;
};
-DECLARE_DEVICE_TYPE(HPDIO_98603B, dio16_98603b_device)
+} // namespace bus::hp_dio
+} // namespace bus
+
+DECLARE_DEVICE_TYPE_NS(HPDIO_98603B, bus::hp_dio, dio16_98603b_device)
#endif // MAME_BUS_HPDIO_98603B_H