1
0
mirror of https://github.com/simh/simh.git synced 2026-01-25 19:56:25 +00:00

3b2: Remove unused variables

This commit is contained in:
Seth Morabito
2017-11-30 17:43:36 -08:00
parent 0a00d8066a
commit 395420b8b8
2 changed files with 4 additions and 13 deletions

View File

@@ -486,7 +486,7 @@ t_stat timer0_svc(UNIT *uptr)
t_stat timer1_svc(UNIT *uptr)
{
struct timer_ctr *ctr;
int32 t, ticks;
int32 ticks;
ctr = (struct timer_ctr *)uptr->tmr;
@@ -501,7 +501,7 @@ t_stat timer1_svc(UNIT *uptr)
ticks = TPS_CLK;
}
t = sim_rtcn_calb(ticks, TMR_CLK);
sim_rtcn_calb(ticks, TMR_CLK);
sim_activate_after(uptr, (uint32) (1000000 / ticks));
return SCPE_OK;