Question

module half_adder(a,b,s,co); input a,b; output s,co; wire an, bn, n1, n2; not b1 (an,a); not b2...

module half_adder(a,b,s,co);
input a,b;
output s,co;
wire an, bn, n1, n2;

not b1 (an,a);
not b2 (bn,b);
and b3 (n1, an, b);
and b4 (n2, bn, a);
or b5 (s, n1,n2);
and b6 (co, a,b);

endmodule

Create a test fixture and run simulation using Cadence Verilog XL. plz

Homework Answers

Answer #1

Create a test fixture and run simulation using Cadence Verilog XL. Plz

Step1:In setup environment dialog box initialize a simulation run directory

With name had.run1

Observe initial Verilog-XL simulation control window.

Observe The Record Signals dialog box

Step2: create a new testfixture template in dialog by clicking yes.

Observe Verilog-xL stimulus Options form with file name textfixture.verilog

Step3:find the Testfixture for the half adder. Do not create a module in this file.

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT