From 865c03d3c1c6dfaee3732f856c52e5c749a800de Mon Sep 17 00:00:00 2001 From: Lars Brinkhoff Date: Mon, 13 Nov 2023 08:37:08 +0100 Subject: [PATCH] KA10: Not necessary to check tx_count in svc. --- PDP10/ka10_ch10.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/PDP10/ka10_ch10.c b/PDP10/ka10_ch10.c index b5e51ad..3c764e6 100644 --- a/PDP10/ka10_ch10.c +++ b/PDP10/ka10_ch10.c @@ -251,6 +251,7 @@ t_stat ch10_transmit () ch10_status |= OVER; } tx_count = 0; + ch10_status |= TXD; ch10_test_int (); return SCPE_OK; } @@ -415,9 +416,6 @@ t_stat ch10_svc(UNIT *uptr) if (ch10_lines[0].conn) { ch10_receive (); } - if (tx_count == 0) - ch10_status |= TXD; - ch10_test_int (); return SCPE_OK; }