27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# $1 $2 $3 $4 $5 $6 $7
cat <<EOF >> ${ICD}
${comment} Inputs
EOF
for name in `cat ${txt} | awk '($1 == "Input:") { print $3 }'`
do
num=`grep ${name} ${struc} | awk '($1 == "input") { print $2 }'`
grep ^Input ${txt} |\
awk '($3 == name) { printf ("\tmttu%c%d%c\t= %s;\n", lb, num-offset, rb, $2) }'\
lb=${lb} rb=${rb} name=${name} num=${num} offset=${offset} >> ${ICD}
done
cat <<EOF >> ${ICD}
${comment} Outputs
EOF
for name in `cat ${txt} | awk '($1 == "Output:") { print $3 }'`
do
num=`grep ${name} ${struc} | awk '($1 == "output") { print $2 }'`
grep ^Output ${txt} |\
awk '($3 == name) { printf ("\t%-30s = mtty%c%d%c;\n", $2, lb, num-offset, rb) }'\
lb=${lb} rb=${rb} name=${name} num=${num} offset=${offset} >> ${ICD}
done
|
|
|
|
|
|
|
|
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# $1 $2 $3 $4 $5 $6 $7
cat <<EOF >> ${ICD}
${comment} Inputs
EOF
for name in `cat ${txt} | gawk '($1 == "Input:") { print $3 }'`
do
num=`grep ${name} ${struc} | gawk '($1 == "input") { print $2 }'`
grep ^Input ${txt} |\
gawk '($3 == name) { printf ("\tmttu%c%d%c\t= %s;\n", lb, num-offset, rb, $2) }'\
lb=${lb} rb=${rb} name=${name} num=${num} offset=${offset} >> ${ICD}
done
cat <<EOF >> ${ICD}
${comment} Outputs
EOF
for name in `cat ${txt} | gawk '($1 == "Output:") { print $3 }'`
do
num=`grep ${name} ${struc} | gawk '($1 == "output") { print $2 }'`
grep ^Output ${txt} |\
gawk '($3 == name) { printf ("\t%-30s = mtty%c%d%c;\n", $2, lb, num-offset, rb) }'\
lb=${lb} rb=${rb} name=${name} num=${num} offset=${offset} >> ${ICD}
done
|