Skip to content

Commit

Permalink
fix: signal substitution
Browse files Browse the repository at this point in the history
  • Loading branch information
brech1 committed Feb 27, 2024
1 parent 8dd2258 commit 2254757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ pub fn process_statement(
DataType::Signal => {
// Connect the generated gate output to the given signal
let gate_output_id = ctx.get_signal_id(&rh_access)?;
let given_output_id = ctx.get_signal_id(&lh_access)?;
let gate_output_id = get_signal_for_access(ac, ctx, &rh_access)?;

ac.add_connection(gate_output_id, given_output_id)?;
}
Expand Down

0 comments on commit 2254757

Please sign in to comment.