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

ID16, ID32: Compiler warning cleanup

- Initialize local state variables to 0.  Non functional changes due
  to lack of depth in static analysis scan.
This commit is contained in:
Mark Pizzolato
2020-10-20 03:09:33 -07:00
parent dceadb393e
commit 57071edbfa
2 changed files with 2 additions and 2 deletions

View File

@@ -596,7 +596,7 @@ while (reason == 0) { /* loop until halted */
uint32 dev, drom, inc, lim, opnd;
uint32 op, r1, r1p1, r2, ea = 0, oPC;
uint32 rslt, t, map;
uint32 ir1, ir2, ityp;
uint32 ir1, ir2 = 0, ityp;
int32 sr, st;
if (sim_interval <= 0) { /* check clock queue */