mirror of
https://github.com/simh/simh.git
synced 2026-04-27 20:38:04 +00:00
PDP10: Leverage the internal calibrated timer for accurate wall clock timing
Avoid the common situation on with this simulator whereby the programmatic interval timer is being used for intervals which change often. The internal calibrated timing routines depend on consistent rate for the calibrated device. As discussed in #699
This commit is contained in:
@@ -2198,8 +2198,6 @@ 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))
|
||||
sim_rtcn_tick_ack (30, 0);
|
||||
apr_flg = apr_flg & ~bits;
|
||||
}
|
||||
if (ea & APR_SFLG) /* set flags? */
|
||||
|
||||
Reference in New Issue
Block a user