mirror of
https://github.com/fpganinja/taxi.git
synced 2026-06-27 01:01:19 -07:00
eth: Parameter cleanup
Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
@@ -18,7 +18,7 @@ Authors:
|
||||
module taxi_axis_basex_rx_16 #
|
||||
(
|
||||
parameter DATA_W = 16,
|
||||
parameter CTRL_W = 2,
|
||||
parameter CTRL_W = (DATA_W/8),
|
||||
parameter logic GBX_IF_EN = 1'b0,
|
||||
parameter logic PTP_TS_EN = 1'b0,
|
||||
parameter logic PTP_TS_FMT_TOD = 1'b1,
|
||||
|
||||
@@ -18,7 +18,7 @@ Authors:
|
||||
module taxi_axis_basex_rx_8 #
|
||||
(
|
||||
parameter DATA_W = 8,
|
||||
parameter CTRL_W = 1,
|
||||
parameter CTRL_W = (DATA_W/8),
|
||||
parameter logic GBX_IF_EN = 1'b0,
|
||||
parameter logic PTP_TS_EN = 1'b0,
|
||||
parameter PTP_TS_W = 96
|
||||
|
||||
@@ -18,7 +18,7 @@ Authors:
|
||||
module taxi_axis_basex_tx_16 #
|
||||
(
|
||||
parameter DATA_W = 16,
|
||||
parameter CTRL_W = 2,
|
||||
parameter CTRL_W = (DATA_W/8),
|
||||
parameter logic GBX_IF_EN = 1'b0,
|
||||
parameter GBX_CNT = 1,
|
||||
parameter logic DIC_EN = 1'b1,
|
||||
|
||||
@@ -18,7 +18,7 @@ Authors:
|
||||
module taxi_axis_basex_tx_8 #
|
||||
(
|
||||
parameter DATA_W = 8,
|
||||
parameter CTRL_W = 1,
|
||||
parameter CTRL_W = (DATA_W/8),
|
||||
parameter logic PADDING_EN = 1'b1,
|
||||
parameter MIN_FRAME_LEN = 64,
|
||||
parameter logic GBX_IF_EN = 1'b0,
|
||||
|
||||
Reference in New Issue
Block a user