Intel® Quartus® Prime Software
Intel® Quartus® Prime Design Software, Design Entry, Synthesis, Simulation, Verification, Timing Analysis, System Design (Platform Designer, formerly Qsys)
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
17267 Discussions

implementation of don't care

Altera_Forum
Honored Contributor II
1,307 Views

Say I was given a function for four variables 

f= product of maxterms(3,11,14)+ D(0,2,10,12) 

 

The function's least cost implementation is x1+x2'+x3' 

However, this does not take into don't care signals; is there any way to specify those signals?
0 Kudos
2 Replies
Altera_Forum
Honored Contributor II
625 Views

ENTITY example1 IS 

PORT (x1,x2,x3 : IN BIT; 

f : OUT BIT); 

END example1; 

ARCHITECTURE LogicFunc OF example1 IS 

BEGIN 

f <= (x1 OR x2 OR x3); 

END LogicFunc;
0 Kudos
Altera_Forum
Honored Contributor II
625 Views

I dont really understand the question. On hardware, there is only '1' or '0'. Dont care can be used to tell the synthesisor to optimise the logic a bit better, but you got to be careful how you use the dont care value.

0 Kudos
Reply