cadmouse: Addressed review comments and changed short name to match product name for this slot device

This commit is contained in:
Joakim Larsson Edstrom 2018-02-14 19:44:53 +01:00
parent 300f0f0a6a
commit 04806f70e4
3 changed files with 7 additions and 3 deletions

View File

@ -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

View File

@ -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 )

View File

@ -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;