Skip to content

Commit 880fa20

Browse files
committed
pin_c: support CLK_BUF edits. EDA2822
1 parent 5b6d2d0 commit 880fa20

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pin_c/src/pin_loc/pin_placer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ struct PinPlacer {
4444

4545
CStr cname() const noexcept { return name_.c_str(); }
4646

47-
bool isInput() const noexcept { return module_ == "I_BUF"; }
47+
bool isInput() const noexcept { return module_ == "I_BUF" or module_ == "CLK_BUF"; }
4848
bool isOutput() const noexcept { return module_ == "O_BUF"; }
4949

5050
struct CmpOldPin {

stars/src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
static const char* _pln_VERSION_STR = "pln0193";
1+
static const char* _pln_VERSION_STR = "pln0194";
22

33
#include "RS/rsEnv.h"
44
#include "util/pln_log.h"

stars/src/pin_loc/pin_placer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ struct PinPlacer {
4444

4545
CStr cname() const noexcept { return name_.c_str(); }
4646

47-
bool isInput() const noexcept { return module_ == "I_BUF"; }
47+
bool isInput() const noexcept { return module_ == "I_BUF" or module_ == "CLK_BUF"; }
4848
bool isOutput() const noexcept { return module_ == "O_BUF"; }
4949

5050
struct CmpOldPin {

0 commit comments

Comments
 (0)