Skip to content

Commit d1f97a7

Browse files
committed
unused wires removed
1 parent 6bfdfa2 commit d1f97a7

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

examples/thread_verilog_submodule_ipcore/test_thread_verilog_submodule_ipcore.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1089,9 +1089,6 @@
10891089
reg start;
10901090
wire busy;
10911091
reg [ADDR_WIDTH-1:0] size;
1092-
wire pe_start;
1093-
wire pe_busy;
1094-
wire [ADDR_WIDTH-1+1-1:0] pe_size;
10951092
wire [ADDR_WIDTH-1+1-1:0] pe_addr;
10961093
wire [DATA_WIDTH-1+1-1:0] pe_rdata;
10971094
wire [DATA_WIDTH-1+1-1:0] pe_wdata;

examples/thread_verilog_submodule_ipcore/thread_verilog_submodule_ipcore.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,7 @@ def mkMemcpy():
124124
('DATA_WIDTH', datawidth)),
125125
arg_ports=(('CLK', clk), ('RST', rst),
126126
('start', start), ('busy', busy), ('size', size)),
127-
as_wire=('start', 'busy', 'size',
128-
'addr', 'rdata', 'wdata', 'wenable'))
127+
as_wire=('addr', 'rdata', 'wdata', 'wenable'))
129128

130129
# connect ports to RAM
131130
ram_a.connect_rtl(1, sub['addr'], sub['wdata'],

0 commit comments

Comments
 (0)