Intel® Quartus® Prime Software
Intel® Quartus® Prime Design Software, Design Entry, Synthesis, Simulation, Verification, Timing Analysis, System Design (Platform Designer, formerly Qsys)
16602 Discussions

Get fanout register of a net where the driven pin is the ENA

jorva
New Contributor I
655 Views

Hello,

I would like to find the registers driven on their ENA pin by a net.

"query_collection -report [get_fanouts {node_names}] -all" finds all registers, irrespective of the pin on which they are driven.

Thanks!

0 Kudos
1 Solution
sstrell
Honored Contributor III
643 Views

You need the -through option with get_fanouts to do this:

[get_fanouts {node_names} -through [get_pins -hierarchical *|ena]]

View solution in original post

1 Reply
sstrell
Honored Contributor III
644 Views

You need the -through option with get_fanouts to do this:

[get_fanouts {node_names} -through [get_pins -hierarchical *|ena]]

Reply