3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-04 10:20:24 +00:00

Added ezsat api for creation of anonymous vectors

This commit is contained in:
Clifford Wolf 2013-08-15 14:40:26 +02:00
parent 2f3da54f26
commit 457dc09cdc
2 changed files with 9 additions and 0 deletions

View file

@ -208,6 +208,7 @@ public:
std::vector<int> vec_const_signed(int64_t value, int bits);
std::vector<int> vec_const_unsigned(uint64_t value, int bits);
std::vector<int> vec_var(int bits);
std::vector<int> vec_var(std::string name, int bits);
std::vector<int> vec_cast(const std::vector<int> &vec1, int toBits, bool signExtend = false);