question, are the oeb bits set to "1" or "0" if yo...
# generative-ai
h
question, are the oeb bits set to "1" or "0" if you want the matching bit to be an input?
This is what I've got atm, assuming that "1" means tristate/input
Copy code
assign 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
m
Looks good according to my understanding.
a
@jeffdi Can you check this for Hammond on the IO. There is conflicting data in the docs and I don't want to mess it up based on just reporting what the docs say.
h
@jeffdi @Andrew Wright were we able to confirm this before I submit for final processing?
a
Haven't heard back from Jeff bu Tim and Mitch have agreed w your direction and Tim agrees the doc I found was an error.....so I think we are done. Will confirm at start of call.