I have created a verilog module A, and a testbench for this module called A_tb.
The testbench contains instances of other modules (B,C) that are connected to an instance of A in the testbench.
I can correctly generate post synthesis timings for A, and want to run a post PnR simulation using testbench A_tb.
Running a behavioral simulation on the testbench works, and produces correct results.
Running a post-PnR simulation gives an error that modules B,C can't be found. Is it possible to simulate these modules behavioral-ly just to generate stimulus for the post PnR timings model of A ?
EDIT: Synthesis and post-PnR timing using XST, simulation using isim.
$sdf_annotate
?, you might have the wrong scope selected - Greg$sdf_annotate
is for applying post-PnR timing information to the simulation. When I saw post-PnR I accidentally assumed it was a timing annotation related problem. It can generate a similar error messages. - Greg