19 lines
363 B
Coq
19 lines
363 B
Coq
|
|
// Check that it is possible to declare the data type for a vector type task
|
||
|
|
// port before the direction for non-ANSI style port declarations.
|
||
|
|
|
||
|
|
module test;
|
||
|
|
|
||
|
|
task t;
|
||
|
|
reg [7:0] x;
|
||
|
|
input [7:0] x;
|
||
|
|
if (x == 10 && $bits(x) == 8) begin
|
||
|
|
$display("PASSED");
|
||
|
|
end else begin
|
||
|
|
$display("FAILED");
|
||
|
|
end
|
||
|
|
endtask
|
||
|
|
|
||
|
|
initial t(10);
|
||
|
|
|
||
|
|
endmodule
|