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

VHDL/FPGA/Verilog

开发平台:

Visual C++

  1. module all (a,b,y);
  2. input    [7:0]  a,b;
  3. output   [8:0]  y;
  4. function [8:0]  add_It_10;
  5. input    [7:0]  a,b;
  6. reg      [7:0]  temp;
  7.   begin
  8.    if(b<10)
  9.      temp=b;
  10.         else
  11.           temp=10;
  12.             add_It_10=a+temp[3:0];
  13.   end
  14. endfunction
  15. assign y=add_It_10(a,b);
  16. endmodule