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
No description provided.
The text was updated successfully, but these errors were encountered:
Problem lies within OptimizeNetlist() function
Sorry, something went wrong.
Test Verilog: module and3(output out,out1,out2,out3,out4, input in1,in2,in3,in4);
wire w1,w2,w3,w4; nor (out,in3,in1,in2); or (out1,in1,in2,in3); and a1(out2,in3,in2); xnor (out3,in1,in2,in3); not (out4,in3);
endmodule
Narrowed the error down to the Output_OR portion of the function
Solved
Works fine for 2 -3 outputs. Has a slight issue with this netlist: module and3(output out,out1,out2,out3,out4, input in1,in2,in3,in4);
PrashantVaidyanathan
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: