From: Cahit Date: Thu, 18 Apr 2013 07:17:18 +0000 (+0200) Subject: compile_constraints.pl scripts are added - cu X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=c810f408db18cbf57a7cc0f48f448f23c9ca48e5;p=trb3.git compile_constraints.pl scripts are added - cu --- 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");