diff options
author | 2016-10-21 14:40:26 -0500 | |
---|---|---|
committer | 2016-10-21 14:40:26 -0500 | |
commit | b17342b1071762db22b13949d8fa58a05d884957 (patch) | |
tree | dba617d84c058ba9278f170342afbb778c3121ed /src/devices/bus/isa/mcd.h | |
parent | 0fb2fdb0346fd1bacc6bca10c73b438995b7fab3 (diff) |
mcd: load stuff (nw)
Diffstat (limited to 'src/devices/bus/isa/mcd.h')
-rw-r--r-- | src/devices/bus/isa/mcd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/isa/mcd.h b/src/devices/bus/isa/mcd.h index aae4d3b638c..3d8d529ce35 100644 --- a/src/devices/bus/isa/mcd.h +++ b/src/devices/bus/isa/mcd.h @@ -37,7 +37,7 @@ protected: virtual void device_start() override; virtual void device_reset() override; private: - bool read_sector(); + bool read_sector(bool first = false); bool m_change; bool m_newstat; @@ -57,7 +57,7 @@ private: UINT8 m_dma; UINT16 m_dmalen; UINT32 m_readmsf; - UINT8 m_readcount; + UINT32 m_readcount; bool m_locked; int m_drvmode; int m_curtoctrk; @@ -102,7 +102,7 @@ private: enum { FLAG_NODATA = 2, FLAG_NOSTAT = 4, - FLAG_DATAREADY = 8, //?? + FLAG_UNK = 8, //?? FLAG_OPEN = 16 }; enum { |