3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-14 19:25:40 +00:00

Adding Widht Limit

This commit is contained in:
Michael Baier 2026-07-09 09:00:59 +02:00
parent 3adb423e9e
commit ea41b196da

View file

@ -99,6 +99,9 @@ namespace RTLIL
PD_INOUT = 3 PD_INOUT = 3
}; };
// Maximum width in bits of RTLIL::Wire or RTLIL::Const
constexpr int WIDTH_LIMIT = 1 << 30;
struct Const; struct Const;
struct AttrObject; struct AttrObject;
struct NamedObject; struct NamedObject;