Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[SOLVED] Syntax problem around entity instantiation

Status
Not open for further replies.

madalin1990

Full Member level 2
Full Member level 2
Joined
Apr 4, 2012
Messages
124
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,298
Visit site
Activity points
2,090
I have described a top for my implementation but got stucked on this error:
"Syntax error near "Instance_dpim_IO".

I have scanned the code but can't find any syntax error.Here is the code near "Instance_dpim_IO" :


Code:
...
signal Sw1   : std_logic_vector(15 downto 0);  -- 0x05..6  16 switches, bottom row on the PC I/O Ex GUI
signal Btn1 : std_logic_vector(15 downto 0);  -- 0x07..8  16 Buttons, bottom row on the PC I/O Ex GUI
signal dwBtwn: std_logic_vector(31 downto 0); -- 0x09..b  32 Bits user output	

------------------------------ component's instantiation -------------------------------------

Instance_dpim_IO: dpim_IO port map(
      mclk 	 => mclk, 
      EppDB	 => EppDB,
      EppAstb=> EppAstb,	
      EppDstb=> EppDstb,	
      EppWr  => EppWr,	
      EppWait=> EppWait, 
	  data_out=> dpimref_mem,
	  data_in => mem_dpimref,  
	  address => tmpAddr,
      Swrite => tmpWr,
      Led    => Led1,
	  LBar    => LBar1,
	  Sw      => Sw1,
	  Btn     => Btn1,
	  dwOut   => dwBtwn,
	  dwIn    => dwBtwn	  
	);
	
Instance_ram_sp_ar_aw: ram_sp_ar_aw port map (
        address => tmpAddr,
        mem_in  => dpimref_mem,
        ...

- - - Updated - - -

Nevermind. I have forgotten a begin.:D
 

Yeah! I don't know how this happens! I see the answer only after I post it on edaboard :D
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top