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:
parent
253b8ec358
commit
3a95ba4b34
@ -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 */
|
||||
|
||||
@ -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 */
|
||||
|
||||
@ -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 */
|
||||
|
||||
@ -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 */
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user