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.

Setting default value for signal or port (Quartus-VHDL)?

Status
Not open for further replies.

toninlg

Member level 1
Joined
Dec 25, 2005
Messages
36
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
1,587
I would like to set a default value for a signal or a port in VHDL.
For signal I've seen a post speaking about some solutions:

1) process without activity list and a wait; (wait without until) but Quartus wan't a until after the wait statement.

2) if (now < 1ps). Does it works in hardware or only in simulation? I don't know how to use it in my code, because I already update the signal in a process. So I've got an error if I use it outside of the following process.

Code:
PROCESS (INT)
	
		BEGIN
		
			IF (INT'EVENT AND INT='0') THEN

	scmpr <= data (6 downto 0);
	sens <= data(7);
	
	END IF;
	
END PROCESS;

What could be the solution? Is there a mean to execute a processus or a part of a process only at power-up or reset?

I've seen that Quartus supports initialization at declaration but not for all FPGA.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top