mirror of
https://github.com/fpganinja/taxi.git
synced 2025-12-12 18:18:39 -08:00
Reorganize repository
Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
18
src/sync/syn/vivado/taxi_sync_reset.tcl
Normal file
18
src/sync/syn/vivado/taxi_sync_reset.tcl
Normal file
@@ -0,0 +1,18 @@
|
||||
# SPDX-License-Identifier: CERN-OHL-S-2.0
|
||||
#
|
||||
# Copyright (c) 2020-2025 FPGA Ninja, LLC
|
||||
#
|
||||
# Authors:
|
||||
# - Alex Forencich
|
||||
#
|
||||
|
||||
# reset synchronizer timing constraints
|
||||
|
||||
foreach inst [get_cells -hier -filter {(ORIG_REF_NAME == taxi_sync_reset || REF_NAME == taxi_sync_reset)}] {
|
||||
puts "Inserting timing constraints for taxi_sync_reset instance $inst"
|
||||
|
||||
# reset synchronization
|
||||
set reset_ffs [get_cells -quiet -hier "sync_reg_reg[*]" -filter "PARENT == $inst"]
|
||||
|
||||
set_false_path -to [get_pins -of_objects $reset_ffs -filter {IS_PRESET || IS_RESET}]
|
||||
}
|
||||
15
src/sync/syn/vivado/taxi_sync_signal.tcl
Normal file
15
src/sync/syn/vivado/taxi_sync_signal.tcl
Normal file
@@ -0,0 +1,15 @@
|
||||
# SPDX-License-Identifier: CERN-OHL-S-2.0
|
||||
#
|
||||
# Copyright (c) 2020-2025 FPGA Ninja, LLC
|
||||
#
|
||||
# Authors:
|
||||
# - Alex Forencich
|
||||
#
|
||||
|
||||
# signal synchronizer timing constraints
|
||||
|
||||
foreach inst [get_cells -hier -filter {(ORIG_REF_NAME == taxi_sync_signal || REF_NAME == taxi_sync_signal)}] {
|
||||
puts "Inserting timing constraints for taxi_sync_signal instance $inst"
|
||||
|
||||
set_false_path -to [get_cells -hier "sync_reg_reg[0][*]" -filter "PARENT == $inst"]
|
||||
}
|
||||
Reference in New Issue
Block a user