sedarash
Newbie level 3
- Joined
- Feb 20, 2008
- Messages
- 4
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,309
Dear all,
Situation:
I am working on a post PnR netlist and want to run SDF annotation. However I receive warnings like *W,SDFNEP for those modules that miss the matching statement in the specify block. I am aware of those modules and I want to control the annotator to IGNORE them. Therefore I included an sdf.config script to IGNORE those which are not of my concern.
Problem:
Bellow is my sdf.config file. The problem is that only first module is effective in masking the warnings for module A and the second module is not taken into account.
I appreciate if you can help me understand my mistake.
Cheers
Arash
Situation:
I am working on a post PnR netlist and want to run SDF annotation. However I receive warnings like *W,SDFNEP for those modules that miss the matching statement in the specify block. I am aware of those modules and I want to control the annotator to IGNORE them. Therefore I included an sdf.config script to IGNORE those which are not of my concern.
Problem:
Bellow is my sdf.config file. The problem is that only first module is effective in masking the warnings for module A and the second module is not taken into account.
I appreciate if you can help me understand my mistake.
Code:
MODULE A
{
(ina1 => outa1) = IGNORE;
(ina1 => outa2) = IGNORE;
(ina2 => outa1) = IGNORE;
(ina2 => outa2) = IGNORE;
}
MODULE B
{
(inb1 => outb1) = IGNORE;
(inb1 => outb2) = IGNORE;
(inb2 => outb1) = IGNORE;
(inb2 => outb2) = IGNORE;
}
Cheers
Arash