mirror of
https://github.com/fpganinja/taxi.git
synced 2025-12-09 00:48:40 -08:00
22 lines
374 B
Tcl
22 lines
374 B
Tcl
# SPDX-License-Identifier: MIT
|
|
#
|
|
# Copyright (c) 2025 FPGA Ninja, LLC
|
|
#
|
|
# Authors:
|
|
# - Alex Forencich
|
|
#
|
|
|
|
set params [dict create]
|
|
|
|
# SFP+ rate
|
|
# 0 for 1G, 1 for 10G
|
|
dict set params SFP_RATE "0"
|
|
|
|
# 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]
|