summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/device.h
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2019-03-17 00:28:28 +0100
committer MooglyGuy <therealmogminer@gmail.com>2019-03-17 00:28:54 +0100
commitb5c19e9fb2ebcbc061702dc99befeab38af94b42 (patch)
treec36d546fcdea20b90e3f62a809194a19bc175ebf /src/emu/device.h
parent06fd6e6cff12039d26fb5bb6c3b4e9b73b47f55d (diff)
-astrocade: Various changes. [Ryan Holtz]
* Removed inaccurate comment from astrocde.xml regarding the 2000-baud tape interface. * Converted astrohome controllers to slot devices. * Added preliminary (not yet working) 300-baud cassette tape slot device. * Changed potentiometer callbacks from tagged IO ports to devcb3. -device: Added feature flag to indicate lack of, or support for, cassette. (nw)
Diffstat (limited to 'src/emu/device.h')
-rw-r--r--src/emu/device.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/device.h b/src/emu/device.h
index abaea74cb12..708b28a0fb9 100644
--- a/src/emu/device.h
+++ b/src/emu/device.h
@@ -104,9 +104,10 @@ struct device_feature
LAN = u32(1) << 11,
WAN = u32(1) << 12,
TIMING = u32(1) << 13,
+ CASSETTE = u32(1) << 14,
NONE = u32(0),
- ALL = (u32(1) << 14) - 1U
+ ALL = (u32(1) << 15) - 1U
};
};