From dcac223604420da2af0c840c9ae39a5f9e41d27b Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 6 Jul 2019 10:29:55 -0400 Subject: dp8344: Minor points (nw) --- src/devices/cpu/bcp/dp8344.cpp | 2 +- src/devices/cpu/bcp/dp8344.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/devices/cpu/bcp/dp8344.cpp b/src/devices/cpu/bcp/dp8344.cpp index 9d22e4382dc..a1cd2fac1f1 100644 --- a/src/devices/cpu/bcp/dp8344.cpp +++ b/src/devices/cpu/bcp/dp8344.cpp @@ -1281,7 +1281,7 @@ void dp8344_device::cmd_w(u8 data) BIT(data, 6) ? "single step" : BIT(data, 2) ? "start" : "stop"); m_ric = data; - set_input_line(INPUT_LINE_HALT, BIT(data, 2) ? ASSERT_LINE : CLEAR_LINE); + set_input_line(INPUT_LINE_HALT, BIT(data, 2) ? CLEAR_LINE : ASSERT_LINE); } diff --git a/src/devices/cpu/bcp/dp8344.h b/src/devices/cpu/bcp/dp8344.h index f2ca5041b90..20a7dec1d8f 100644 --- a/src/devices/cpu/bcp/dp8344.h +++ b/src/devices/cpu/bcp/dp8344.h @@ -31,6 +31,7 @@ public: // register enumeration enum { BCP_PC, + BCP_BA, BCP_BB, BCP_CCR, BCP_NCF, BCP_ICR, BCP_ACR, BCP_DCR, BCP_IBR, BCP_ATR, BCP_FBR, BCP_GP0, BCP_GP1, BCP_GP2, BCP_GP3, BCP_GP4, BCP_GP5, BCP_GP6, BCP_GP7, @@ -41,8 +42,7 @@ public: BCP_IWLO, BCP_IXLO, BCP_IYLO, BCP_IZLO, BCP_IWHI, BCP_IXHI, BCP_IYHI, BCP_IZHI, BCP_TR, - BCP_ASP, BCP_DSP, - BCP_BA, BCP_BB + BCP_ASP, BCP_DSP }; // construction/destruction -- cgit v1.2.3