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/sunmouse/hlemouse.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/sunmouse/hlemouse.cpp')
| -rw-r--r-- | src/devices/bus/sunmouse/hlemouse.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/sunmouse/hlemouse.cpp b/src/devices/bus/sunmouse/hlemouse.cpp index 97bae888600..3256f171aee 100644 --- a/src/devices/bus/sunmouse/hlemouse.cpp +++ b/src/devices/bus/sunmouse/hlemouse.cpp @@ -27,8 +27,8 @@ DEVICE TYPE GLOBALS ***************************************************************************/ -DEFINE_DEVICE_TYPE_NS(SUN_1200BAUD_HLE_MOUSE, bus::sunmouse, hle_1200baud_device, "sunmouse_hle1200", "Sun Mouse (1200 Baud, HLE)") -DEFINE_DEVICE_TYPE_NS(SUN_4800BAUD_HLE_MOUSE, bus::sunmouse, hle_4800baud_device, "sunmouse_hle4800", "Sun Mouse (4800 Baud, HLE)") +DEFINE_DEVICE_TYPE(SUN_1200BAUD_HLE_MOUSE, bus::sunmouse::hle_1200baud_device, "sunmouse_hle1200", "Sun Mouse (1200 Baud, HLE)") +DEFINE_DEVICE_TYPE(SUN_4800BAUD_HLE_MOUSE, bus::sunmouse::hle_4800baud_device, "sunmouse_hle4800", "Sun Mouse (4800 Baud, HLE)") namespace bus::sunmouse { |
