From c810f408db18cbf57a7cc0f48f448f23c9ca48e5 Mon Sep 17 00:00:00 2001 From: Cahit Date: Thu, 18 Apr 2013 09:17:18 +0200 Subject: [PATCH] compile_constraints.pl scripts are added - cu --- cbmrich/compile_constraints.pl | 11 +++++++++++ wasa/compile_constraints.pl | 12 ++++++++++++ 2 files changed, 23 insertions(+) create mode 100755 cbmrich/compile_constraints.pl create mode 100755 wasa/compile_constraints.pl diff --git a/cbmrich/compile_constraints.pl b/cbmrich/compile_constraints.pl new file mode 100755 index 0000000..40c6be4 --- /dev/null +++ b/cbmrich/compile_constraints.pl @@ -0,0 +1,11 @@ +#!/usr/bin/perl +use Data::Dumper; +use warnings; +use strict; + +my $TOPNAME = "cbmrich"; #Name of top-level entity + + +#create full lpf file +system("cp ../base/$TOPNAME.lpf workdir/$TOPNAME.lpf"); +system("cat ../tdc_releases/tdc_v1.1.1/tdc_constraints.lpf >> workdir/$TOPNAME.lpf"); diff --git a/wasa/compile_constraints.pl b/wasa/compile_constraints.pl new file mode 100755 index 0000000..1e5965e --- /dev/null +++ b/wasa/compile_constraints.pl @@ -0,0 +1,12 @@ +#!/usr/bin/perl + +use Data::Dumper; +use warnings; +use strict; + +my $TOPNAME = "trb3_periph_padiwa"; #Name of top-level entity + +#create full lpf file +system("cp ../base/$TOPNAME.lpf workdir/$TOPNAME.lpf"); +system("cat ../tdc_releases/tdc_v1.3/trbnet_constraints.lpf >> workdir/$TOPNAME.lpf"); +system("cat ../tdc_releases/tdc_v1.3/tdc_constraints.lpf >> workdir/$TOPNAME.lpf"); -- 2.43.0