Doc fixes. Add banner to output

This commit is contained in:
Alex Mykyta
2022-03-16 20:53:55 -07:00
parent b9570480be
commit 746f6cb020
7 changed files with 12 additions and 9 deletions

View File

@@ -266,7 +266,6 @@ class FieldLogic:
same assignment precedence.
"""
# TODO: Add all the other things
self.add_sw_conditional(sw_onread.ClearOnRead(self.exp), AssignmentPrecedence.SW_ONREAD)
self.add_sw_conditional(sw_onread.SetOnRead(self.exp), AssignmentPrecedence.SW_ONREAD)

View File

@@ -1,4 +1,6 @@
// TODO: Add a banner
// Generated by PeakRDL-regblock - A free and open-source SystemVerilog generator
// https://github.com/SystemRDL/PeakRDL-regblock
module {{module_name}} (
input wire clk,
input wire rst,

View File

@@ -1,4 +1,6 @@
// TODO: Add a banner
// Generated by PeakRDL-regblock - A free and open-source SystemVerilog generator
// https://github.com/SystemRDL/PeakRDL-regblock
package {{hwif.package_name}};
{{hwif.get_package_contents()|indent}}
endpackage