3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-09-07 02:11:09 +00:00

HACK to unconditionally debug bufnorm drivers in show output

This commit is contained in:
Jannis Harder 2025-08-14 16:19:42 +02:00
parent 4de384d776
commit efb08dcdc2
2 changed files with 20 additions and 2 deletions

View file

@ -1880,6 +1880,7 @@ public:
int width, start_offset, port_id;
bool port_input, port_output, upto, is_signed;
bool driverKnown() const { return driverCell_ != nullptr; }
RTLIL::Cell *driverCell() const { log_assert(driverCell_); return driverCell_; };
RTLIL::IdString driverPort() const { log_assert(driverCell_); return driverPort_; };