mirror of
https://github.com/fpganinja/taxi.git
synced 2025-12-07 16:28:40 -08:00
23 lines
440 B
Tcl
23 lines
440 B
Tcl
# SPDX-License-Identifier: MIT
|
|
#
|
|
# Copyright (c) 2025 FPGA Ninja, LLC
|
|
#
|
|
# Authors:
|
|
# - Alex Forencich
|
|
#
|
|
|
|
set params [dict create]
|
|
|
|
# 10G MAC configuration
|
|
dict set params CFG_LOW_LATENCY "1"
|
|
dict set params COMBINED_MAC_PCS "1"
|
|
dict set params MAC_DATA_W "32"
|
|
|
|
# apply parameters to top-level
|
|
set param_list {}
|
|
dict for {name value} $params {
|
|
lappend param_list $name=$value
|
|
}
|
|
|
|
set_property generic $param_list [get_filesets sources_1]
|