iverilog/ivtest/ivltests/br_gh788.v

19 lines
153 B
Coq
Raw Normal View History

module test();
task print_hex;
input n;
reg [7:0] n;
begin
$display("%h", n);
2023-06-01 07:34:02 +02:00
end
endtask
initial begin
print_hex(66);
end
2023-06-01 07:34:02 +02:00
endmodule