mirror of
https://github.com/mamedev/mame.git
synced 2024-11-18 10:06:19 +01:00
Fix build (nw)
This commit is contained in:
parent
74af888a30
commit
5e442a887f
3 changed files with 3 additions and 2 deletions
|
@ -937,6 +937,7 @@ function linkProjects_mame_mess(_target, _subtarget)
|
|||
"homebrew",
|
||||
"homelab",
|
||||
"hp",
|
||||
"ibm6580",
|
||||
"imp",
|
||||
"intel",
|
||||
"interton",
|
||||
|
|
|
@ -612,7 +612,7 @@ WRITE8_MEMBER(ibm6580_state::floppy_w)
|
|||
|
||||
case 5: // 815A
|
||||
m_fdc->fifo_w(space, offset, data);
|
||||
if (m_floppy_idle);
|
||||
if (m_floppy_idle)
|
||||
m_floppy_idle = false;
|
||||
break;
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ public:
|
|||
DECLARE_WRITE_LINE_MEMBER(ack_w);
|
||||
|
||||
private:
|
||||
uint8_t m_dip, m_bus, m_t0, m_t1, m_p1, m_p2;
|
||||
uint8_t m_bus, m_t0, m_t1, m_p1, m_p2;
|
||||
emu_timer *m_reset_timer;
|
||||
|
||||
devcb_write_line m_out_data;
|
||||
|
|
Loading…
Reference in a new issue