------------The next patch is to find the following section:---------------
OUTPR: DEBUG F4
TRMOCP ; get next output character from TRMSER
TST D1 ; data available?
BPL OPRG ; yes -
ANDW #^C<OIP>,@A5 ; no - clear the OIP flag
MOVB #CM$16!CM$1STP!CM$TXD!CM$RCE,D7
CMPW T.BAU(A5),#2 ; is terminal set for 110 baud?
BNE 10$ ; no -
MOVB #CM$16!CM$2STP!CM$TXD!CM$RCE,D7
10$: MOVB D7,@A4 ; set mode bits
OPRD: BR INTX ; return
-------------Make the following four lines of changes:-----------------
OUTPR: DEBUG F4
TRMOCP ; get next output character from TRMSER
DEBUG F5
; [02/10/84] Lock-up fix: the data register must be read in order
; to clear out the 6850's interrupt
MOVB P.RCV(A4),D7 ;clear out the 6850 interrupt
TST D1 ; data available?
BPL OPRG ; yes -
ANDW #^C<OIP>,@A5 ; no - clear the OIP flag
MOVB #CM$16!CM$1STP!CM$TXD!CM$RCE,D7
CMPW T.BAU(A5),#2 ; is terminal set for 110 baud?
BNE 10$ ; no -
MOVB #CM$16!CM$2STP!CM$TXD!CM$RCE,D7
10$: MOVB D7,@A4 ; set mode bits
OPRD: BR INTX ; return