Added adc->dac path test
This commit is contained in:
@@ -13,7 +13,7 @@ module wb_gpio_banks #(
|
||||
input wire i_wb_we,
|
||||
input wire i_wb_cyc,
|
||||
input wire i_wb_stb,
|
||||
output wire o_wb_ack,
|
||||
output reg o_wb_ack,
|
||||
|
||||
input wire [num_banks*32-1:0] i_gpio,
|
||||
output wire [num_banks*32-1:0] o_gpio
|
||||
@@ -48,8 +48,8 @@ module wb_gpio_banks #(
|
||||
|
||||
integer bi;
|
||||
always @* begin
|
||||
o_wb_rdt = 0;
|
||||
o_wb_ack = 0;
|
||||
o_wb_rdt = 32'h00000000;
|
||||
o_wb_ack = 1'b0;
|
||||
for(bi=0; bi<num_banks; bi=bi+1) begin
|
||||
if(bank_sel[bi]) begin
|
||||
o_wb_rdt = bank_rdt[bi*32 +: 32];
|
||||
|
||||
Reference in New Issue
Block a user