Overview
Comment: | Now correctly write 0/1 port names |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ba8069348b2fd067e5b22f78773d90f9 |
User & Date: | gawthrop@users.sourceforge.net on 1998-04-03 15:07:20 |
Other Links: | branch diff | manifest | tags |
Context
1998-04-04
| ||
07:29:26 | SS now only port component check-in: a6112d8506 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1998-04-03
| ||
15:07:20 | Now correctly write 0/1 port names check-in: ba8069348b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:02:50 | Added 0 and 1 to list of possible ports check-in: 177672449d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/awk/rbg_fig2m.awk from [d269724ade] to [2778def986].
︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | + + + | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.24 1998/04/03 14:02:50 peterg ## Added 0 and 1 to list of possible ports ## ## Revision 1.23 1998/02/01 18:37:41 peterg ## Don't print irritating warnings about ports listed in lbl files. ## # Revision 1.22 1997/08/09 14:42:39 peterg # Added underscore to port regexp # ## Revision 1.21 1997/08/04 12:49:17 peterg |
︙ | |||
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 | 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | + + - + + | # A port component is SS,0 or 1 followed by : followed by a port string isa_port_component = 0; if (match(str, delimiter)) { split(str,a,delimiter); isa_port_component = (match(a[1], port_component_regexp))&& (match(a[2], port_regexp)>0) } # It must also be specified at depth 0 isa_port_component = isa_port_component && (depth==0); # A component is a plain or a port component isa_component = isa_plain_component||isa_port_component; # Coordinates in fields 12 & 13 x_coord = $12; y_coord = $13; # Do the ports if (isa_port) { i_port++; port_name = str; ports[i_port] = sprintf("%s %s %s", x_coord, y_coord, port_name); } # Do the port components if (isa_port_component) { i_port_component++; type = a[1]; |
︙ | |||
562 563 564 565 566 567 568 | 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 | + - - + + | printf("rcomponents = [") >> b_file; j = 0; # Do the port components, in order of appearance, first for (i = 1; i <= i_port_component; i++) { name = sprintf("[%s]", port_labels[i]); |
︙ |