mirror of
https://github.com/holub/mame
synced 2025-07-01 16:19:38 +03:00
cadmouse: Addressed review comments and changed short name to match product name for this slot device
This commit is contained in:
parent
300f0f0a6a
commit
04806f70e4
@ -110,7 +110,7 @@ SLOT_INTERFACE_START( abc80_cards )
|
||||
SLOT_INTERFACE("abc830", ABC830)
|
||||
SLOT_INTERFACE("db411223", DATABOARD_4112_23)
|
||||
SLOT_INTERFACE("unidisk", UNIDISK)
|
||||
// SLOT_INTERFACE("abccad", ABC_CADMOUSE)
|
||||
SLOT_INTERFACE("cadabc", ABC_CADMOUSE)
|
||||
SLOT_INTERFACE_END
|
||||
|
||||
|
||||
|
@ -64,7 +64,7 @@ Notes:
|
||||
// DEVICE DEFINITIONS
|
||||
//**************************************************************************
|
||||
|
||||
DEFINE_DEVICE_TYPE(ABC_CADMOUSE, abc_cadmouse_device, "abccad", "ABC-CAD Mouse/Hi-res Unit")
|
||||
DEFINE_DEVICE_TYPE(ABC_CADMOUSE, abc_cadmouse_device, "cadabc", "CAD ABC Mouse/Hi-res Unit")
|
||||
|
||||
//-------------------------------------------------
|
||||
// ROM( abc_cadmouse )
|
||||
|
@ -19,9 +19,13 @@ public:
|
||||
// construction/destruction
|
||||
abc_cadmouse_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
|
||||
|
||||
// Flag non working features
|
||||
static constexpr feature_type unemulated_features() { return feature::MOUSE | feature::GRAPHICS; }
|
||||
|
||||
protected:
|
||||
void abc_cadmouse_mem(address_map &map);
|
||||
void abc_cadmouse_io(address_map &map);
|
||||
protected:
|
||||
|
||||
// device-level overrides
|
||||
virtual void device_start() override;
|
||||
virtual void device_reset() override;
|
||||
|
Loading…
Reference in New Issue
Block a user