Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ldoolitt committed Oct 5, 2024
1 parent 0ae7746 commit 2d5c8f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/oscope/common/digitizer_slowread.v
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ parameter sr_length = 17*16;
wire [sr_length-1:0] slow_sr_data = {
U3DA_min, U3DA_max, U3DB_min, U3DB_max, U3DC_min, U3DC_max, U3DD_min, U3DD_max,
U2DA_min, U2DA_max, U2DB_min, U2DB_max, U2DC_min, U2DC_max, U2DD_min, U2DD_max,
tag_now, tag_old }
tag_now, tag_old };
reg [sr_length-1:0] slow_read=0;
always @(posedge adc_clk) if (slow_op) begin
slow_read <= slow_snap ? slow_sr_data : {slow_read[sr_length-9:0],timestamp_out};
Expand Down

0 comments on commit 2d5c8f7

Please sign in to comment.