mirror of
https://github.com/open-simh/simh.git
synced 2026-01-14 07:40:35 +00:00
PDP10: Add recording of clock tick acknowledgments.
This commit is contained in:
parent
5e201a4407
commit
8b73304322
@ -2212,8 +2212,11 @@ if (ea & APR_SENB) /* set enables? */
|
||||
apr_enb = apr_enb | bits;
|
||||
if (ea & APR_CENB) /* clear enables? */
|
||||
apr_enb = apr_enb & ~bits;
|
||||
if (ea & APR_CFLG) /* clear flags? */
|
||||
if (ea & APR_CFLG) { /* clear flags? */
|
||||
if ((bits & APRF_TIM) && (apr_flg & APRF_TIM)
|
||||
sim_rtcn_tick_ack (30, 0);
|
||||
apr_flg = apr_flg & ~bits;
|
||||
}
|
||||
if (ea & APR_SFLG) /* set flags? */
|
||||
apr_flg = apr_flg | bits;
|
||||
if (apr_flg & APRF_ITC) { /* interrupt console? */
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user