T
tami
Guest
I'm using this procedure :
procedure write_file(int1 : in integer;variable output_file : out
TEXT) is
variable output_line : LINE;
begin
write(output_line,int1);
writeline(output_file,output_line);
end;
with ncsim, v93 everything is fine.
with modelsim however, I'm getting an error :
** Error: generic_lib.vhd(1619): Actual for formal f is not a file.
(line 1619 is << writeline(output_file,output_line); >> )
Any idea ?
please reply to tami.baumer @conexant.com
procedure write_file(int1 : in integer;variable output_file : out
TEXT) is
variable output_line : LINE;
begin
write(output_line,int1);
writeline(output_file,output_line);
end;
with ncsim, v93 everything is fine.
with modelsim however, I'm getting an error :
** Error: generic_lib.vhd(1619): Actual for formal f is not a file.
(line 1619 is << writeline(output_file,output_line); >> )
Any idea ?
please reply to tami.baumer @conexant.com