Skip to content
Snippets Groups Projects
Commit 84bfc879 authored by dwf1m12's avatar dwf1m12
Browse files

clean up test bench axis tracker HDL

parent 0e99e28b
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,7 @@ module soclabs_axis8_capture
reg [40*8-1:0] log_file; // File name can't be > *40* characters
assign RXD_READY = rx_shift_reg[0]; // ready except for a cycle processing
assign RXD8_READY = rx_shift_reg[0]; // ready except for a cycle processing
`define SimSTDOUT 32'h00000001
initial
......@@ -128,7 +128,7 @@ assign RXD_READY = rx_shift_reg[0]; // ready except for a cycle processing
else if (rx_shift_reg[0]== 1'b0) // if LSB zero, preset a clock cycle later
rx_shift_reg <= {9{1'b1}};
else if (rx_shift_reg[0] & RXD8_VALID) //ready and valid data capture
rx_shift_reg[9:0] <= {RXD8_DATA[7:0], 1'b0};
rx_shift_reg[8:0] <= {RXD8_DATA[7:0], 1'b0};
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment