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.

altsyncram ROM functions...

Status
Not open for further replies.

davorin

Advanced Member level 3
Advanced Member level 3
Joined
Jun 7, 2003
Messages
901
Helped
11
Reputation
22
Reaction score
4
Trophy points
1,298
Location
Switzerland
Activity points
7,349
altsyncram

Anybody experienced same bus as Quartus II 4.1 synthesizes away declared ROM blocks with init-file?

I have 3 identical ROM blocks with each having its own MIF init file:

Code:
	rom1 red(
		.address({back[9:0],tile_delta}),
		.clock(~horizontal[2]),
		.q(tiles_c)
	);

	rom2 green(
		.address({back[9:0],tile_delta}),
		.clock(~horizontal[2]),
		.q(tiles_b)
	);

	rom3 blue(
		.address({back[9:0],tile_delta}),
		.clock(~horizontal[2]),
		.q(tiles_a)
	);

But only 1 ROM block is synthesized no matter what I do....though all 3 are using same inputs and outputs are driving VGA port...
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top