Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Coriolis VLSI EDA
Coriolis
Commits
9b8ea645
Commit
9b8ea645
authored
Jun 04, 2021
by
Jean-Paul Chaput
Browse files
Add VHDL "ref" keyword to CRL::NamingScheme. Cleanup BlifParser debug.
parent
1d7a415e
Changes
2
Hide whitespace changes
Inline
Side-by-side
crlcore/src/ccore/blif/BlifParser.cpp
View file @
9b8ea645
...
...
@@ -741,8 +741,6 @@ namespace {
// cerr << "sm0 plug:" << plug->getMasterNet()->getName() << " => net:" << net->getName() << endl;
// }
cerr
<<
"plugNet="
<<
(
void
*
)
plugNet
<<
endl
;
cerr
<<
"plug->getMasterNet()="
<<
(
void
*
)(
plug
->
getMasterNet
())
<<
endl
;
if
(
plugNet
->
isSupply
()
and
not
plug
->
getMasterNet
()
->
isSupply
())
{
ostringstream
message
;
message
<<
"In "
<<
instance
<<
"
\n
"
...
...
crlcore/src/ccore/toolbox/NamingScheme.cpp
View file @
9b8ea645
...
...
@@ -61,6 +61,7 @@ namespace CRL {
// VHDL reserved keywords (scalar).
if
(
loweredName
==
"in"
)
return
"in_v"
;
if
(
loweredName
==
"out"
)
return
"out_v"
;
if
(
loweredName
==
"ref"
)
return
"ref_v"
;
if
(
loweredName
==
"inout"
)
return
"inout_v"
;
if
(
loweredName
==
"true"
)
return
"bool_true"
;
if
(
loweredName
==
"false"
)
return
"bool_false"
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment