mirror of
https://github.com/holub/mame
synced 2025-04-20 15:32:45 +03:00
ncd5390: Implement (ah!) selection disable [O. Galibert]
This commit is contained in:
parent
e2d2355352
commit
a607313235
@ -612,7 +612,7 @@ READ8_MEMBER(ncr5390_device::command_r)
|
||||
|
||||
WRITE8_MEMBER(ncr5390_device::command_w)
|
||||
{
|
||||
// logerror("%s: command_w %02x (%08x)\n", tag(), data, space.device().safe_pc());
|
||||
logerror("%s: command_w %02x (%08x)\n", tag(), data, space.device().safe_pc());
|
||||
if(command_pos == 2) {
|
||||
status |= S_GROSS_ERROR;
|
||||
check_irq();
|
||||
@ -679,6 +679,10 @@ void ncr5390_device::start_command()
|
||||
command_pop_and_chain();
|
||||
break;
|
||||
|
||||
case CD_DISABLE_SEL:
|
||||
command_pop_and_chain();
|
||||
break;
|
||||
|
||||
case CI_XFER:
|
||||
state = INIT_XFR;
|
||||
xfr_phase = scsi_bus->ctrl_r() & S_PHASE_MASK;
|
||||
|
Loading…
Reference in New Issue
Block a user