1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-13 23:37:13 +00:00

PDP10: Fix typo in sim_rtcn_tick_ack setup

This commit is contained in:
Mark Pizzolato 2016-11-27 15:42:58 -08:00
parent 8b73304322
commit f8147fca84

View File

@ -2213,7 +2213,7 @@ if (ea & APR_SENB) /* set enables? */
if (ea & APR_CENB) /* clear enables? */
apr_enb = apr_enb & ~bits;
if (ea & APR_CFLG) { /* clear flags? */
if ((bits & APRF_TIM) && (apr_flg & APRF_TIM)
if ((bits & APRF_TIM) && (apr_flg & APRF_TIM))
sim_rtcn_tick_ack (30, 0);
apr_flg = apr_flg & ~bits;
}