From f0a4eb0c1bed46626688ee90f0bad946c9b5e3fd Mon Sep 17 00:00:00 2001 From: Richard Cornwell Date: Sun, 11 Aug 2019 00:46:57 -0400 Subject: [PATCH] KA10: Fixed problem of droping first column of card. --- PDP10/kx10_cr.c | 1 + 1 file changed, 1 insertion(+) diff --git a/PDP10/kx10_cr.c b/PDP10/kx10_cr.c index 414e3bd..be886cb 100644 --- a/PDP10/kx10_cr.c +++ b/PDP10/kx10_cr.c @@ -156,6 +156,7 @@ t_stat cr_devio(uint32 dev, uint64 *data) { uptr->STATUS &= ~(CARD_IN_READ|RDY_READ|DATA_RDY); uptr->COL = 0; sim_activate(uptr, uptr->wait); + break; } if (CARD_RDY(uptr)) uptr->STATUS |= RDY_READ;