Skip to content

Commit a935e7b

Browse files
committed
Merge branch 'master' into arc_nanc
2 parents 45db14a + 0c7aea9 commit a935e7b

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Dockerfile.bedrock_testing_base_bookworm

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,9 @@ RUN mkdir ${LITEX_INSTALL_PATH} && \
133133
cd ${LITEX_INSTALL_PATH} && \
134134
sh /litex_meta.sh
135135

136-
# Install leep from public repo until we have
137-
# a PyPi home for it
136+
# Install leep from PyPi
138137
RUN pip3 install \
139-
git+https://github.com/BerkeleyLab/leep.git
138+
leep==1.0.0
140139

141140
# Install sv2v
142141
RUN apt-get update && \

Dockerfile.bedrock_testing_base_trixie

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,9 @@ RUN mkdir ${LITEX_INSTALL_PATH} && \
133133
cd ${LITEX_INSTALL_PATH} && \
134134
sh /litex_meta.sh
135135

136-
# Install leep from public repo until we have
137-
# a PyPi home for it
136+
# Install leep from PyPi
138137
RUN pip3 install \
139-
git+https://github.com/BerkeleyLab/leep.git
138+
leep==1.0.0
140139

141140
# Install sv2v
142141
RUN apt-get update && \

badger/construct.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ reg sof_d=0;
100100
// Would it take fewer resources to replace sof_d with (live && pc_r == 2)?
101101
// Or to replace (live && pc_r==3) with sof_dd? Need to measure to find out.
102102
// Could be worth breaking this up into 2 always blocks (badge and data)?
103-
// Not really, they both have to touch the "live" register.
103+
// Not really, since they both have to touch the "live" register.
104104
always @(posedge clk) begin
105105
pc_r <= next_pc;
106106
sof_d <= sof;
@@ -185,7 +185,7 @@ assign eth_strobe_short = eth_strobe_short_r;
185185
assign eth_strobe_long = pack_len_nz && pc_r > 3 && category != 0;
186186
assign pc = pc_d;
187187

188-
// Debug only, will be dropped if you don't hook up the xcheck_fault port:
188+
// Debug only; will be dropped if you don't hook up the xcheck_fault port:
189189
// Cross-check the IP header checksum we just computed
190190
reg xcheck_zero=0, xcheck_gate=0, xcheck_ones_d=0;
191191
reg xcheck_capture=0, xcheck_fault_r=0;

badger/rtefi_center.v

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,11 @@ generate if (mac_aw > 1) begin : mac_b
212212
.strobe_l(tx_mac_strobe_l)
213213
);
214214
end else begin : no_mac_b
215+
assign host_raddr = 0;
215216
assign tx_mac_strobe_s = 0;
216217
assign tx_mac_strobe_l = 0;
217218
assign tx_mac_data = 0;
219+
assign tx_mac_done = 0;
218220
end endgenerate
219221

220222
// Slide data from Tx MAC in here

badger/tests/cluster_sim.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ int main(int argc, char** argv, char** env) {
4545
Verilated::traceEverOn(true);
4646
tfp = new VerilatedVcdC;
4747
top->trace(tfp, 8, 0); // Trace 8 levels of hierarchy
48-
tfp->open("Vatb.vcd");
48+
tfp->open("cluster_sim.vcd");
4949
}
5050

5151
int cluster_n = 0; // will be filled in from cluster_n_expose port

0 commit comments

Comments
 (0)