From 1f936daa1cc4f95181c4f9d1e78abb8b72637360 Mon Sep 17 00:00:00 2001 From: mooglyguy Date: Tue, 11 Sep 2018 21:48:02 +0200 Subject: [PATCH] ncr5390: Select w/ ATN and Stop command should indicate bus service. Makes the SunOS installer happy, nw --- src/devices/machine/ncr5390.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/machine/ncr5390.cpp b/src/devices/machine/ncr5390.cpp index 2daaabe445b..9878198b03a 100644 --- a/src/devices/machine/ncr5390.cpp +++ b/src/devices/machine/ncr5390.cpp @@ -375,7 +375,7 @@ void ncr5390_device::step(bool timeout) case DISC_SEL_ATN_SEND_BYTE: if(c == CD_SELECT_ATN_STOP) { seq = 1; - function_complete(); + function_bus_complete(); } else { command_length = derive_msg_size(fifo[0]); state = DISC_SEL_WAIT_REQ;