mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 00:55:32 +00:00
Some minor build fixes for Visual C
This commit is contained in:
parent
e4c5ee9b89
commit
fa535c0b00
3 changed files with 16 additions and 3 deletions
|
@ -93,8 +93,17 @@ struct Clk2fflogicPass : public Pass {
|
|||
log_signal(clk), log_signal(sig_d), log_signal(sig_q));
|
||||
module->remove(cell);
|
||||
|
||||
SigSpec clock_edge = module->Eqx(NEW_ID, {past_clk, clk},
|
||||
clkpol ? SigSpec({State::S0, State::S1}) : SigSpec({State::S1, State::S0}));
|
||||
SigSpec clock_edge_pattern;
|
||||
|
||||
if (clkpol) {
|
||||
clock_edge_pattern.append_bit(State::S0);
|
||||
clock_edge_pattern.append_bit(State::S1);
|
||||
} else {
|
||||
clock_edge_pattern.append_bit(State::S1);
|
||||
clock_edge_pattern.append_bit(State::S0);
|
||||
}
|
||||
|
||||
SigSpec clock_edge = module->Eqx(NEW_ID, {past_clk, clk}, clock_edge_pattern);
|
||||
|
||||
Wire *past_d = module->addWire(NEW_ID, GetSize(sig_d));
|
||||
Wire *past_q = module->addWire(NEW_ID, GetSize(sig_q));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue