half_adder_3.v
上传用户:saul_905
上传日期:2013-11-27
资源大小:184k
文件大小:0k
源码类别:

VHDL/FPGA/Verilog

开发平台:

Visual C++

  1. module half_adder(a,b,out,carry);
  2. input a,b;
  3. output out,carry;
  4. xor n1(out,a,b);
  5. and n2(carry,a,b);
  6. endmodule