Hammond
06/02/2023, 10:27 PMHammond
06/02/2023, 10:29 PMassign io_oeb = {8'hff, 8'h00}; //top 8 bits are inputs, bottom 8 bits are outputs
reg[7:0] io_in_reg_pipe;
reg[7:0] io_in_reg;
always @(posedge wb_clk_i) begin
io_in_reg_pipe <= io_in[15:8];
io_in_reg <= io_in_reg_pipe;
end
Mitch Bailey
06/02/2023, 10:53 PMAndrew Wright
06/02/2023, 11:21 PMHammond
06/03/2023, 2:23 PMAndrew Wright
06/03/2023, 2:52 PM