mirror of https://github.com/openXC7/prjxray.git
19 lines
547 B
Tcl
19 lines
547 B
Tcl
# Copyright (C) 2017-2020 The Project X-Ray Authors
|
|
#
|
|
# Use of this source code is governed by a ISC-style
|
|
# license that can be found in the LICENSE file or at
|
|
# https://opensource.org/licenses/ISC
|
|
#
|
|
# SPDX-License-Identifier: ISC
|
|
create_project -force -part $::env(XRAY_PART) design design
|
|
set_property design_mode PinPlanning [current_fileset]
|
|
open_io_design -name io_1
|
|
|
|
#set_param tcl.collectionResultDisplayLimit 0
|
|
set_param messaging.disableStorage 1
|
|
|
|
set nbpips_fp [open nb_pips.txt w]
|
|
|
|
set pips [get_pips]
|
|
puts $nbpips_fp [llength $pips]
|