zynq-sandbox

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit ab9e3c9cc812e99e5865a0ed3d1222ec08607d17
parent 3a326df498bed50a19fde1e7194db62d28cd1b03
Author: Travis Geiselbrecht <geist@foobox.com>
Date:   Mon, 27 Oct 2014 16:54:55 -0700

fix a danging comma in parameter list, which 2014.3 hates

Diffstat:
Mhdl/serdes_10to1_tx.sv | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hdl/serdes_10to1_tx.sv b/hdl/serdes_10to1_tx.sv @@ -18,7 +18,7 @@ OSERDESE2 #( .DATA_RATE_TQ("SDR"), .DATA_WIDTH(10), .TRISTATE_WIDTH(1), - .SERDES_MODE("MASTER"), + .SERDES_MODE("MASTER") )serdes_lo( .CLK(clkx5), .CLKDIV(clk), @@ -54,7 +54,7 @@ OSERDESE2 #( .DATA_RATE_TQ("SDR"), .DATA_WIDTH(10), .TRISTATE_WIDTH(1), - .SERDES_MODE("SLAVE"), + .SERDES_MODE("SLAVE") )serdes_hi( .CLK(clkx5), .CLKDIV(clk),