请问,谁在Ise中用过$fwrite??

我在Ise中想用$fwrite写文件,程序如下:
module tb;
integer os1;
reg clk;

initial
begin
os1 = $fopen("tb.txt");
//$fwrite(os1,"aaaaaaaaaaaa");
//$fclose(os1);
end

always  @(posedge clk)
begin
$fwrite(os1,“aaa/n”);
end

initial begin
                // Initialize Inputs
                clk = 0;
                #100;// Wait 100 ns for global reset to finish
       forever
        begin
            clk = 1'b0;
            #5clk = 1'b1;
            #5;
        end
        end
endmodule
但是在输出的文件中就只能看到一格字母a,请问这是怎么回事啊?