mirror of
https://github.com/Silicon1602/srdl2sv.git
synced 2024-11-14 11:03:36 +00:00
Add bus_clk/bus_rst_n ports to widget (rather than (only) reg_clk)
This commit is contained in:
parent
6565c33445
commit
baf08d2343
@ -1,7 +1,8 @@
|
|||||||
module amba3ahblite_widget
|
module amba3ahblite_widget
|
||||||
(
|
(
|
||||||
// Register clock
|
// Register clock
|
||||||
input reg_clk,
|
input bus_clk,
|
||||||
|
input bus_rst_n,
|
||||||
|
|
||||||
// Outputs to internal logic
|
// Outputs to internal logic
|
||||||
output [31:0] addr,
|
output [31:0] addr,
|
||||||
|
@ -6,8 +6,9 @@ module_instantiation:
|
|||||||
****************************/
|
****************************/
|
||||||
amba3ahblite_widget
|
amba3ahblite_widget
|
||||||
amba3ahblite_widget_inst
|
amba3ahblite_widget_inst
|
||||||
(// Register clock
|
(// Clocks & Resets
|
||||||
.reg_clk,
|
.bus_clk,
|
||||||
|
.bus_rst_n,
|
||||||
|
|
||||||
// Outputs to internal logic
|
// Outputs to internal logic
|
||||||
.addr,
|
.addr,
|
||||||
|
@ -85,4 +85,7 @@ if __name__ == "__main__":
|
|||||||
with open(out_widget_file, 'w') as file:
|
with open(out_widget_file, 'w') as file:
|
||||||
file.write(widget_rtl)
|
file.write(widget_rtl)
|
||||||
|
|
||||||
|
logger.info("Selected, implemented, and copied '{}' widget".format(config['bus']))
|
||||||
|
|
||||||
|
# Print elapsed time
|
||||||
logger.info("Elapsed time: %f seconds", time.time() - start)
|
logger.info("Elapsed time: %f seconds", time.time() - start)
|
||||||
|
Loading…
Reference in New Issue
Block a user