Skip to content

Commit

Permalink
ensure uio_oe is correct
Browse files Browse the repository at this point in the history
  • Loading branch information
stevej committed Oct 30, 2023
1 parent 763f72f commit e40bdc5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/tt_um_minipit_stevej.v
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ module tt_um_minipit_stevej (

// wherein we need temporary storage
reg [7:0] temp_counter;

assign uio_oe = 8'b1111_0000;
// the first four bits are writable by the design
// the last four bits are writable by the user
assign uio_oe = 8'b0000_1111;

// counter derived from config byte 1 concatenated with config byte 0
reg [15:0] counter;
Expand Down

0 comments on commit e40bdc5

Please sign in to comment.