Skip to content

Commit

Permalink
Better readability of constant
Browse files Browse the repository at this point in the history
  • Loading branch information
hpretl committed Oct 31, 2024
1 parent 2bcf482 commit ca3609a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tt_um_hpretl_spi.v
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module tt_um_hpretl_spi (
wire [15:0] sine_out_w;
wire [15:0] dac_input;

assign uio_oe = 8'b11111111; // using IO for output
assign uio_oe = 8'b1111_1111; // using IO for output
assign uio_out = ui_in[3] ? reg_out_w[15:8] : reg_out_w[7:0];

assign dac_input = ui_in[6] ? sine_out_w : reg_out_w;
Expand Down

0 comments on commit ca3609a

Please sign in to comment.