Skip to content

Commit

Permalink
axi_logic_analyzer: Fix push-pull/open-drain selection
Browse files Browse the repository at this point in the history
  • Loading branch information
acostina committed Feb 12, 2018
1 parent bf3ba44 commit 944edeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/axi_logic_analyzer/axi_logic_analyzer.v
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ module axi_logic_analyzer (

generate
for (i = 0 ; i < 16; i = i + 1) begin
assign data_t[i] = od_pp_n[i] ? io_selection[i] & !data_o[i] : io_selection[i];
assign data_t[i] = od_pp_n[i] ? io_selection[i] | data_o[i] : io_selection[i];
always @(posedge clk_out) begin
data_o[i] <= overwrite_enable[i] ? overwrite_data[i] : data_r[i];
end
Expand Down

0 comments on commit 944edeb

Please sign in to comment.