90 likes | 189 Vues
Learn how to use Xilinx ISE design suite to create a Half Adder circuit in Verilog. Follow steps to enter and synthesize code, understanding AND and XOR operations for Carry and Sum determination.
E N D
Today’s Lab • Start working with Xilinx [pronounced: Zy-links] ISE design suite • Create new project • Enter code • Synthesize code • Simulate code
Half Adder • AND to arrive at Carry • XOR to arrive at Sum
Half Adder Verilog Code module half_adder (A, B, Sum, C_out); input A, B; output Sum, C_out; xor (Sum, A, B); and (C_out, A, B); endmodule