1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-02-13 11:25:18 +00:00

KA10: Not necessary to check tx_count in svc.

This commit is contained in:
Lars Brinkhoff
2023-11-13 08:37:08 +01:00
parent 7927f1131d
commit 865c03d3c1

View File

@@ -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;
}