jesd204: Update jesd204_tx_lane.v

Removed decoder for tx_ready.
main
Maxim 2020-04-01 13:29:40 +06:00 committed by GitHub
parent 74221eb42c
commit 341221dc91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -112,10 +112,7 @@ always @(posedge clk) begin
if (cgs_enable == 1'b1) begin
phy_data <= {DATA_PATH_WIDTH{8'hbc}};
end else begin
case (tx_ready)
1'b0: phy_data <= ilas_data;
default: phy_data <= scrambled_data;
endcase
phy_data <= (tx_ready) ? scrambled_data : ilas_data;
end
end