Sophie

Sophie

distrib > Fedora > 13 > i386 > by-pkgid > 507bc49db4d931250bab05d0619a9dd6 > files > 285

gplcver-2.12a-1.fc13.i686.rpm

module test #(parameter integer p1 = 5, parameter p2 = 7,
 parameter r1 = 7.3) (
 input [7:0] a,
 input signed [7:0] b, c, d, // multiple port that share attributes
 output [7:0] e,
 output signed [7:0] f,g,
 output signed [7:0] h) ;

 task my_task(input a, b, inout c, output signed [15:0] d, e);
  begin
   c = a;
   d = f;
   e= 2*f;
  end
 endtask

endmodule