Sorry, I should have posted more of the code. I'm using basically this: process FILE vector_file_in: text IS "test_in.txt"; VARIABLE input_line : line; VARIABLE str_stimulus_in: string(8 DOWNTO 1); begin WHILE NOT endfile(vector_file_in) LOOP readline(vector_file_in, input_line); read(input_line, str_stimulus_in); -- tests end loop; end process; I am using -v93, so may be this the problem. But Modelsim is also configured to use it and works fine. Unfortunately I can only test next week. Thanks!
↧