mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 17:15:33 +00:00
Various small fixes (from gcc compiler warnings)
This commit is contained in:
parent
c094c53de8
commit
20a7965f61
2 changed files with 5 additions and 5 deletions
|
@ -143,25 +143,25 @@ struct FsmData
|
|||
log(" Input signals:\n");
|
||||
RTLIL::SigSpec sig_in = cell->connections["\\CTRL_IN"];
|
||||
for (int i = 0; i < SIZE(sig_in); i++)
|
||||
log(" %3zd: %s\n", i, log_signal(sig_in[i]));
|
||||
log(" %3d: %s\n", i, log_signal(sig_in[i]));
|
||||
|
||||
log("\n");
|
||||
log(" Output signals:\n");
|
||||
RTLIL::SigSpec sig_out = cell->connections["\\CTRL_OUT"];
|
||||
for (int i = 0; i < SIZE(sig_out); i++)
|
||||
log(" %3zd: %s\n", i, log_signal(sig_out[i]));
|
||||
log(" %3d: %s\n", i, log_signal(sig_out[i]));
|
||||
|
||||
log("\n");
|
||||
log(" State encoding:\n");
|
||||
for (int i = 0; i < SIZE(state_table); i++)
|
||||
log(" %3zd: %10s%s\n", i, log_signal(state_table[i], false),
|
||||
log(" %3d: %10s%s\n", i, log_signal(state_table[i], false),
|
||||
int(i) == reset_state ? " <RESET STATE>" : "");
|
||||
|
||||
log("\n");
|
||||
log(" Transition Table (state_in, ctrl_in, state_out, ctrl_out):\n");
|
||||
for (int i = 0; i < SIZE(transition_table); i++) {
|
||||
transition_t &tr = transition_table[i];
|
||||
log(" %5zd: %5d %s -> %5d %s\n", i, tr.state_in, log_signal(tr.ctrl_in), tr.state_out, log_signal(tr.ctrl_out));
|
||||
log(" %5d: %5d %s -> %5d %s\n", i, tr.state_in, log_signal(tr.ctrl_in), tr.state_out, log_signal(tr.ctrl_out));
|
||||
}
|
||||
|
||||
log("\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue