mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-07 01:54:10 +00:00
Typo fixes in cell->*Param() API
This commit is contained in:
parent
8649b57b6f
commit
0b6769af3f
|
@ -848,10 +848,10 @@ public:
|
||||||
const std::map<RTLIL::IdString, RTLIL::SigSpec> &connections() const;
|
const std::map<RTLIL::IdString, RTLIL::SigSpec> &connections() const;
|
||||||
|
|
||||||
// access cell parameters
|
// access cell parameters
|
||||||
bool hasParam(RTLIL::IdString portname) const;
|
bool hasParam(RTLIL::IdString paramname) const;
|
||||||
void unsetParam(RTLIL::IdString portname);
|
void unsetParam(RTLIL::IdString paramname);
|
||||||
void setParam(RTLIL::IdString portname, RTLIL::Const value);
|
void setParam(RTLIL::IdString paramname, RTLIL::Const value);
|
||||||
const RTLIL::Const &getParam(RTLIL::IdString portname) const;
|
const RTLIL::Const &getParam(RTLIL::IdString paramname) const;
|
||||||
|
|
||||||
void check();
|
void check();
|
||||||
void fixup_parameters(bool set_a_signed = false, bool set_b_signed = false);
|
void fixup_parameters(bool set_a_signed = false, bool set_b_signed = false);
|
||||||
|
|
Loading…
Reference in a new issue