Skip to content

Commit

Permalink
servile_mux: Only catch writes to sim_sig_adr when signature file is …
Browse files Browse the repository at this point in the history
…open
  • Loading branch information
olofk committed Feb 15, 2024
1 parent 88a4711 commit 086fff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion servile/servile_mux.v
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ module servile_mux
generate
if (sim) begin

assign sig_en = i_wb_cpu_we & (i_wb_cpu_adr == sim_sig_adr);
assign sig_en = |f & i_wb_cpu_we & (i_wb_cpu_adr == sim_sig_adr);
assign halt_en = i_wb_cpu_we & (i_wb_cpu_adr == sim_halt_adr);

reg [1023:0] signature_file;
Expand Down

0 comments on commit 086fff7

Please sign in to comment.