1Netlist::Cell(3) User Contributed Perl Documentation Netlist::Cell(3)
2
3
4
6 Verilog::Netlist::Cell - Instantiated cell within a Verilog Netlist
7
9 use Verilog::Netlist;
10
11 ...
12 my $cell = $module->find_cell('cellname');
13 print $cell->name;
14
16 A Verilog::Netlist::Cell object is created by Verilog::Netlist for
17 every instantiation in the current module.
18
20 See also Verilog::Netlist::Subclass for additional accessors and
21 methods.
22
23 $self->comment
24 Returns any comments following the definition. keep_comments=>1
25 must be passed to Verilog::Netlist::new for comments to be
26 retained.
27
28 $self->delete
29 Delete the cell from the module it's under.
30
31 $self->gateprim
32 True if the cell is a gate primitive instantiation (buf/cmos/etc),
33 but not a UDP.
34
35 $self->module
36 Pointer to the module the cell is in.
37
38 $self->name
39 The instantiation name of the cell.
40
41 $self->netlist
42 Reference to the Verilog::Netlist the cell is under.
43
44 $self->pins
45 List of Verilog::Netlist::Pin connections for the cell.
46
47 $self->pins_sorted
48 List of name sorted Verilog::Netlist::Pin connections for the cell.
49
50 $self->range
51 The range for the cell (e.g. "[1:0]") or false (i.e. undef or "")
52 if not ranged.
53
54 $self->submod
55 Reference to the Verilog::Netlist::Module the cell instantiates.
56 Only valid after the design is linked.
57
58 $self->submodname
59 The module name the cell instantiates (under the cell).
60
62 See also Verilog::Netlist::Subclass for additional accessors and
63 methods.
64
65 $self->lint
66 Checks the cell for errors. Normally called by
67 Verilog::Netlist::lint.
68
69 $self->new_pin
70 Creates a new Verilog::Netlist::Pin connection for this cell.
71
72 $self->pins_sorted
73 Returns all Verilog::Netlist::Pin connections for this cell.
74
75 $self->dump
76 Prints debugging information for this cell.
77
79 Verilog-Perl is part of the <https://www.veripool.org/> free Verilog
80 EDA software tool suite. The latest version is available from CPAN and
81 from <https://www.veripool.org/verilog-perl>.
82
83 Copyright 2000-2021 by Wilson Snyder. This package is free software;
84 you can redistribute it and/or modify it under the terms of either the
85 GNU Lesser General Public License Version 3 or the Perl Artistic
86 License Version 2.0.
87
89 Wilson Snyder <wsnyder@wsnyder.org>
90
92 Verilog-Perl, Verilog::Netlist::Subclass Verilog::Netlist
93
94
95
96perl v5.32.1 2021-04-14 Netlist::Cell(3)