S
Sylvain Munaut
Guest
Melissa Vetromille wrote:
If your tb entity name is Test_sim and if your EDK system instance is
UUT, add this to your testbech :
configuration tb_conf of Test_sim is
for testbench_arch
for UUT: system
use configuration work.system_conf;
end for;
end for;
end tb_conf;
Also, simulate the tb_conf configuration and not just your test bench
entity. (when selecting what to simulate).
EDK will also create a system.do or a .do to load everything needed IIRC.
Sylvain
Hello!
I have a system implemented in hardware and I prototyped it in
VIrtex-II Pro platform with a testbench. I analyzed the signals using
chipscope and it worked the same as in simulation. After this, I
created a project in EDK and substituted the testbench by a
Microblaze processor. The project stopped working. Now, I need to
debug the harwdare in order to find the problem, ut I don't know how
to do this. I'm trying to use ModelSim.
In fact, I generated the simulation files and created the testbench
file to stimulate my system. However, this testbench just generates
the clock and reset, so I need instanciate my software in order to
generate the other stimulus. Is it possible? What do I have to do in
order to incorporate my software in simulation? Does anyone can help
me?
Thank you!
Melissa
If your tb entity name is Test_sim and if your EDK system instance is
UUT, add this to your testbech :
configuration tb_conf of Test_sim is
for testbench_arch
for UUT: system
use configuration work.system_conf;
end for;
end for;
end tb_conf;
Also, simulate the tb_conf configuration and not just your test bench
entity. (when selecting what to simulate).
EDK will also create a system.do or a .do to load everything needed IIRC.
Sylvain