要想同时输出到屏幕只要将打开文件得到的fd的最低位置1即可
integer fd; initial begin fd = $fopen("log.txt"); fd = fd | 32'b1; $fwrite(fd,"hello\n"); end