Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   VHDL (http://www.velocityreviews.com/forums/f18-vhdl.html)
-   -   Simple design with MICROBLAZE in Virtex 4 (http://www.velocityreviews.com/forums/t371347-simple-design-with-microblaze-in-virtex-4-a.html)

saurinjpatel 09-18-2006 03:23 PM

Simple design with MICROBLAZE in Virtex 4
 
Hi,

I have created a simple design using Microblaze, FSL bus (connect Microblze and custom IP) and custom IP ( to receive data from Microblaze). This design is created in EDK 8.1. I moved to ISE 8.1 when my design was ready for implementation.

In ISE, I have verified my design by "behaviral simulation" and I got expacted result. Then I have successfully generated "system_stub.bit" file (My top level file name in ISE is "system_stub.vhd").

Now I thought to check my design with "Post-translate Simulation" but I don't know how to creat a test bench for the top level file named as "system_stub_translate.vhd".

system_stub_translate.vhd lokks like this .....

library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
library SIMPRIM;
use SIMPRIM.VCOMPONENTS.ALL;
use SIMPRIM.VPACKAGE.ALL;

entity lmb_bram_elaborate is
port (
BRAM_Clk_A : in STD_LOGIC := 'X';
BRAM_Clk_B : in STD_LOGIC := 'X';
BRAM_Rst_A : in STD_LOGIC := 'X';
BRAM_Rst_B : in STD_LOGIC := 'X';
BRAM_EN_A : in STD_LOGIC := 'X';
BRAM_EN_B : in STD_LOGIC := 'X';
BRAM_Addr_A : in STD_LOGIC_VECTOR ( 0 to 31 );
BRAM_Addr_B : in STD_LOGIC_VECTOR ( 0 to 31 );
BRAM_Dout_A : in STD_LOGIC_VECTOR ( 0 to 31 );
BRAM_Dout_B : in STD_LOGIC_VECTOR ( 0 to 31 );
BRAM_WEN_A : in STD_LOGIC_VECTOR ( 0 to 3 );
BRAM_WEN_B : in STD_LOGIC_VECTOR ( 0 to 3 );
BRAM_Din_B : out STD_LOGIC_VECTOR ( 0 to 31 );
BRAM_Din_A : out STD_LOGIC_VECTOR ( 0 to 31 )
);
end lmb_bram_elaborate;

architecture Structure of lmb_bram_elaborate is
...................
..........

So, I don't know how to creat a test file for this kind of interface (BRAM).
Any one can guide me how to check the system OUTPUT between Synthesis and .bit file generation ??

I will appreciate ur little effort.

Thanks

Saurin


All times are GMT. The time now is 11:10 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57