1 |
131 |
jt_eaton |
eval 'exec `which perl` -S $0 ${1+"$@"}'
|
2 |
|
|
if 0;
|
3 |
135 |
jt_eaton |
#/****************************************************************************/
|
4 |
|
|
#/* */
|
5 |
|
|
#/* SOCGEN Design for Reuse toolset */
|
6 |
|
|
#/* */
|
7 |
|
|
#/* Version 1.0.0 */
|
8 |
|
|
#/* */
|
9 |
|
|
#/* Author(s): */
|
10 |
|
|
#/* - John Eaton, z3qmtr45@gmail.com */
|
11 |
|
|
#/* */
|
12 |
|
|
#/****************************************************************************/
|
13 |
|
|
#/* */
|
14 |
|
|
#/* */
|
15 |
|
|
#/* Copyright 2016 John T Eaton */
|
16 |
|
|
#/* */
|
17 |
|
|
#/* Licensed under the Apache License, Version 2.0 (the "License"); */
|
18 |
|
|
#/* you may not use this file except in compliance with the License. */
|
19 |
|
|
#/* You may obtain a copy of the License at */
|
20 |
|
|
#/* */
|
21 |
|
|
#/* http://www.apache.org/licenses/LICENSE-2.0 */
|
22 |
|
|
#/* */
|
23 |
|
|
#/* Unless required by applicable law or agreed to in writing, software */
|
24 |
|
|
#/* distributed under the License is distributed on an "AS IS" BASIS, */
|
25 |
|
|
#/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */
|
26 |
|
|
#/* See the License for the specific language governing permissions and */
|
27 |
|
|
#/* limitations under the License. */
|
28 |
|
|
#/* */
|
29 |
|
|
#/* */
|
30 |
|
|
#/****************************************************************************/
|
31 |
131 |
jt_eaton |
|
32 |
|
|
|
33 |
|
|
############################################################################
|
34 |
|
|
# General PERL config
|
35 |
|
|
############################################################################
|
36 |
|
|
use Getopt::Long;
|
37 |
|
|
use English;
|
38 |
|
|
use File::Basename;
|
39 |
|
|
use Cwd;
|
40 |
|
|
use Scalar::Util qw(looks_like_number);
|
41 |
|
|
use XML::LibXML;
|
42 |
|
|
use lib './tools';
|
43 |
|
|
use sys::lib;
|
44 |
|
|
use yp::lib;
|
45 |
|
|
use BerkeleyDB;
|
46 |
|
|
|
47 |
|
|
|
48 |
|
|
$OUTPUT_AUTOFLUSH = 1; # set autoflush of stdout to TRUE.
|
49 |
|
|
|
50 |
|
|
|
51 |
|
|
############################################################################
|
52 |
|
|
### Process the options
|
53 |
|
|
############################################################################
|
54 |
|
|
Getopt::Long::config("require_order", "prefix=-");
|
55 |
|
|
GetOptions("h","help",
|
56 |
|
|
"envidentifier=s" => \$envidentifier,
|
57 |
|
|
"prefix=s" => \$prefix,
|
58 |
|
|
"vendor=s" => \$vendor,
|
59 |
|
|
"library=s" => \$library,
|
60 |
|
|
"version=s" => \$version,
|
61 |
|
|
"component=s" => \$component,
|
62 |
|
|
"dest_dir=s" => \$dest_dir,
|
63 |
|
|
"output=s" => \$output,
|
64 |
|
|
"destination=s" => \$destination,
|
65 |
|
|
) || die "(use '$program_name -h' for help)";
|
66 |
|
|
|
67 |
|
|
|
68 |
|
|
##############################################################################
|
69 |
|
|
## Help option
|
70 |
|
|
##############################################################################
|
71 |
|
|
if ( $opt_h or $opt_help )
|
72 |
|
|
{ print "\n gen_crasm -envidentifier {sim/syn} -prefix /work -vendor vendor_name -library library_name -component component_name -version version_name -destination destination -dest_dir ../verilog \n";
|
73 |
|
|
exit 1;
|
74 |
|
|
}
|
75 |
|
|
|
76 |
|
|
|
77 |
|
|
|
78 |
|
|
|
79 |
|
|
#############################################################################
|
80 |
|
|
##
|
81 |
|
|
##
|
82 |
|
|
#############################################################################
|
83 |
|
|
|
84 |
|
|
$home = cwd();
|
85 |
|
|
|
86 |
|
|
my $source = $ARGV[0];
|
87 |
|
|
|
88 |
|
|
print "GEN_crasm -envidentifier $envidentifier -prefix $prefix -vendor $vendor -library $library -component $component -version $version -destination $destination -output $output $source \n";
|
89 |
|
|
|
90 |
|
|
|
91 |
|
|
|
92 |
135 |
jt_eaton |
$cmd ="cd ${prefix}/${vendor}__${library}/${component}/; crasm $source -o $output >${component}.lst ;${home}/tools/bin/hex2abs16 $component ; ${home}/tools/bin/hex2abs $component ; ${home}/tools/bin/hex2abs_split $component ; \n";
|
93 |
131 |
jt_eaton |
if (system($cmd)) {}
|
94 |
|
|
|
95 |
|
|
|
96 |
|
|
|
97 |
|
|
|
98 |
|
|
|
99 |
|
|
|
100 |
|
|
|
101 |
|
|
|
102 |
|
|
|
103 |
|
|
|
104 |
|
|
|
105 |
|
|
1
|
106 |
|
|
|