11 lines
146 B
Coq
11 lines
146 B
Coq
|
|
module test();
|
||
|
|
|
||
|
|
integer f;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
f = $fopen("work/br_gh209.dat");
|
||
|
|
$fwrite(f, "%c%c%c%c", 8'h00, 8'h01, 8'h02, 8'h03);
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|