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

Replace standard in32_t by local int32 type.

This commit is contained in:
Olaf Seibert 2022-10-13 22:29:06 +02:00
parent 253b8ec358
commit 3a95ba4b34
4 changed files with 4 additions and 4 deletions

View File

@ -782,7 +782,7 @@ return SCPE_OK;
t_stat clk_svc (UNIT *uptr)
{
int32_t t;
int32 t;
t = sim_rtcn_calb (clk_tps, TMR_CLK); /* calibrate clock */
sim_activate_after (uptr, 1000000/clk_tps); /* reactivate unit */
tmr_poll = t; /* set tmr poll */

View File

@ -751,7 +751,7 @@ return SCPE_OK;
t_stat clk_svc (UNIT *uptr)
{
int32_t t;
int32 t;
t = sim_rtcn_calb (clk_tps, TMR_CLK); /* calibrate clock */
sim_activate_after (uptr, 1000000/clk_tps); /* reactivate unit */
tmr_poll = t; /* set tmr poll */

View File

@ -784,7 +784,7 @@ return SCPE_OK;
t_stat clk_svc (UNIT *uptr)
{
int32_t t;
int32 t;
t = sim_rtcn_calb (clk_tps, TMR_CLK); /* calibrate clock */
sim_activate_after (uptr, 1000000/clk_tps); /* reactivate unit */
tmr_poll = t; /* set tmr poll */

View File

@ -886,7 +886,7 @@ return SCPE_OK;
t_stat clk_svc (UNIT *uptr)
{
int32_t t;
int32 t;
t = sim_rtcn_calb (clk_tps, TMR_CLK); /* calibrate clock */
sim_activate_after (uptr, 1000000/clk_tps); /* reactivate unit */
tmr_poll = t; /* set tmr poll */