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.

problem with instantiation in VHDL

Status
Not open for further replies.
You have to make 10 outputs, and each one of them get a value after a certain amount of time:
when "0000" => outp1HZ<='1';
when "0001" => outp2Hz<='1';outp1Hz <= '0';
etc etc.

So if I continue the above example, for outp3Hz, is this right?
when "0010" => outp3Hz <= '1'; outp1Hz <= '0'; outp2Hz <= '0';
 

if one of the outputs is '1', you have to make sure all of the other outputs are '0';
 
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top