We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I run Yosys on the following Verilog module that detects if a bus is equal to zero:
always @(*) if(bus0 == 1) begin boolean = 1; end else begin boolean = 0; end
Using this Yosys command:
yosys -p 'synth -auto-top ; abc -g cmos2; write_verilog output.v' "equal_to_zero.v" -p 'write_json answer.json'
It will yield this SVG schematic, however I would like the bus bits to be in order. Is there a way to do this?
The text was updated successfully, but these errors were encountered:
Just to clarify, are you using the latest release or the latest from master?
Sorry, something went wrong.
No branches or pull requests
If I run Yosys on the following Verilog module that detects if a bus is equal to zero:
Using this Yosys command:
yosys -p 'synth -auto-top ; abc -g cmos2; write_verilog output.v' "equal_to_zero.v" -p 'write_json answer.json'
It will yield this SVG schematic, however I would like the bus bits to be in order. Is there a way to do this?
The text was updated successfully, but these errors were encountered: