mirror of
https://github.com/YosysHQ/yosys
synced 2026-07-22 07:05:51 +00:00
Use long long int for pyosys
This commit is contained in:
parent
72de51a1b0
commit
503b0aae20
2 changed files with 4 additions and 4 deletions
|
|
@ -862,8 +862,8 @@ private:
|
|||
public:
|
||||
Const() : flags(RTLIL::CONST_FLAG_NONE), tag(backing_tag::bits), bits_(std::vector<RTLIL::State>()) {}
|
||||
Const(const std::string &str);
|
||||
Const(long long val); // default width is 32
|
||||
Const(long long val, int width);
|
||||
Const(long long int val); // default width is 32
|
||||
Const(long long int val, int width);
|
||||
Const(RTLIL::State bit, int width = 1);
|
||||
Const(std::vector<RTLIL::State> bits) : flags(RTLIL::CONST_FLAG_NONE), tag(backing_tag::bits), bits_(std::move(bits)) {}
|
||||
Const(const std::vector<bool> &bits);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue