IMLAC: Fix wrong instruction mask for decoding.

This commit is contained in:
Lars Brinkhoff 2022-03-11 09:27:07 +01:00
parent 5efb47dca5
commit 96ac1c4ba0

View file

@ -144,7 +144,7 @@ ptp_iot (uint16 insn, uint16 AC)
if ((insn & 0771) == 0271) { /* PUN */ if ((insn & 0771) == 0271) { /* PUN */
; ;
} }
if ((insn & 0772) == 0274) { /* PSF */ if ((insn & 0774) == 0274) { /* PSF */
; ;
} }
return SCPE_OK; return SCPE_OK;