half_adder_2.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. assign out=a^b;
  5. assign carry=a&b;
  6. endmodule