1
0
mirror of https://github.com/pConst/basic_verilog.git synced 2025-01-14 06:42:54 +08:00

Added errors supression script for Vivado to allow 'proto' projects w/o pin assignments

This commit is contained in:
Konstantin Pavlov 2019-04-16 04:42:39 +03:00
parent 1fdc31ad05
commit 6bdafa6d56

View File

@ -0,0 +1,14 @@
#------------------------------------------------------------------------------
# allow_undefined_ports.tcl
# Konstantin Pavlov, pavlovconst@gmail.com
#------------------------------------------------------------------------------
# INFO ------------------------------------------------------------------------
# Use this script for Xilinx Vivado environment to allow generation of test
# projects with undefines pins (that will eventually have DEFAULT positional
# and electrical standard constraints)
#
# Place this script as a pre-tcl-script for "Generate bitstream" step
set_property SEVERITY {Warning} [get_drc_checks NSTD-1]
set_property SEVERITY {Warning} [get_drc_checks UCIO-1]