add is_pad for port

This commit is contained in:
wuheng01
2024-06-26 14:43:29 +08:00
parent a5948c02c6
commit 125463d3cf
4 changed files with 24 additions and 5 deletions
+3
View File
@@ -764,6 +764,8 @@ public:
// Is the clock for timing checks.
bool isCheckClk() const { return is_check_clk_; }
void setIsCheckClk(bool is_clk);
bool isPad() const { return is_pad_; }
void setIsPad(bool is_pad);
RiseFall *pulseClkTrigger() const { return pulse_clk_trigger_; }
// Rise for high, fall for low.
RiseFall *pulseClkSense() const { return pulse_clk_sense_; }
@@ -863,6 +865,7 @@ protected:
bool level_shifter_data_:1;
bool is_switch_:1;
bool is_disabled_constraint_:1;
bool is_pad_:1;
private:
friend class LibertyLibrary;