File tree Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,12 @@ struct PinPlacer {
44
44
45
45
CStr cname () const noexcept { return name_.c_str (); }
46
46
47
- bool isInput () const noexcept { return module_ == " I_BUF" or module_ == " CLK_BUF" ; }
48
- bool isOutput () const noexcept { return module_ == " O_BUF" ; }
47
+ bool isInput () const noexcept {
48
+ return module_ == " I_BUF" or module_ == " CLK_BUF" or module_ == " I_DELAY" ;
49
+ }
50
+ bool isOutput () const noexcept {
51
+ return module_ == " O_BUF" or module_ == " O_DELAY" ;
52
+ }
49
53
50
54
struct CmpOldPin {
51
55
bool operator ()(const EditItem* a, const EditItem* b) const noexcept {
Original file line number Diff line number Diff line change 1
- static const char * _pln_VERSION_STR = " pln0194 " ;
1
+ static const char * _pln_VERSION_STR = " pln0196 " ;
2
2
3
3
#include " RS/rsEnv.h"
4
4
#include " util/pln_log.h"
Original file line number Diff line number Diff line change @@ -44,8 +44,12 @@ struct PinPlacer {
44
44
45
45
CStr cname () const noexcept { return name_.c_str (); }
46
46
47
- bool isInput () const noexcept { return module_ == " I_BUF" or module_ == " CLK_BUF" ; }
48
- bool isOutput () const noexcept { return module_ == " O_BUF" ; }
47
+ bool isInput () const noexcept {
48
+ return module_ == " I_BUF" or module_ == " CLK_BUF" or module_ == " I_DELAY" ;
49
+ }
50
+ bool isOutput () const noexcept {
51
+ return module_ == " O_BUF" or module_ == " O_DELAY" ;
52
+ }
49
53
50
54
struct CmpOldPin {
51
55
bool operator ()(const EditItem* a, const EditItem* b) const noexcept {
You can’t perform that action at this time.
0 commit comments