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
Currently hacknet -f output_format=verilog ... produces modules like:
module (_sReset, error, ...); wire __sReset; wire error; wire local; endmodule
when hacknet does have port direction information from -f emit_port_summary:
-f emit_port_summary
// BEGIN node port info // __sReset : input // error : inout // END mode port info
It would be helpful to directly generate:
module (_sReset, error, ...); input wire __sReset; output wire error; wire local; endmodule
This would simplify wrapper generation for cosimulation (especially 3-way: analog, verilog, HAC).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently hacknet -f output_format=verilog ... produces modules like:
when hacknet does have port direction information from
-f emit_port_summary
:It would be helpful to directly generate:
This would simplify wrapper generation for cosimulation (especially 3-way: analog, verilog, HAC).
The text was updated successfully, but these errors were encountered: