emsec / hal

HAL – The Hardware Analyzer
MIT License
624 stars 76 forks source link

Request - Python Function in HAL for Highlighting Logic Gates or Nets #537

Closed CuriousCodeCrafter closed 10 months ago

CuriousCodeCrafter commented 10 months ago

Hi,

I would like to know if there is any pre-implemented function in HAL capable of highlighting, in the Graph-View of the GUI, logic gates or nets. If not, it could be an interesting feature.

Best Regards.

RenWal commented 10 months ago

You can modify the current selection using the GUI API, which results in the selected gates and nets being highlighted.

You can also create groupings using the netlist API. A grouping is essentially an unsorted bin of gates and nets that can be assigned a color.

Does any of that suit your needs?

CuriousCodeCrafter commented 10 months ago

Completely! Thank you for the quick response.