verilog
Incohérence entre la synthèse et la simulation
Recherche…
Introduction
Une bonne explication de ce sujet se trouve dans http://www.sunburst-design.com/papers/CummingsSNUG1999SJ_SynthMismatch.pdf
Comparaison
fil d = 1'bx; // dire du bloc précédent. Sera 1 ou 0 dans le matériel
if (d == 1'b) // faux dans la simulation. Peut être vrai de faux dans le matériel
Liste de sensibilité
wire a;
wire b;
reg q;
always @(a) // b missing from sensativity list
q = a & b; // In simulation q will change only when a changes
Dans le matériel, q changera à chaque changement de a ou b.
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow