![]() |
|
|
|
#1 |
|
Hi.
I've got problem with writing signal values to file. I just can't write any data to text file. For example I wrote this code: USE STD.TEXTIO.all; architecture beh of io is signal count : integer range 0 to 8 := 0; begin process(clk) file outfile: text; variable f_status: FILE_OPEN_STATUS; variable buf: LINE; begin IF (CLK'EVENT and CLK = '1') THEN file_open(f_status, outfile, "myfile.txt", write_mode); WRITE (buf, integer'(count)); count <= count +1 ; file_close(outfile); end if; end process; end architecture beh; I'm using quartus II, maybe I need to change something in my project settings... Please help. dziadek |
|
|
|
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Convert Video files to PSP | ivan | DVD Video | 4 | 06-17-2008 11:16 AM |
| Convert Video files to MP4 for iPod | ivan | DVD Video | 0 | 04-26-2006 08:38 AM |
| Very slow recognising DVD disc | Terry Pinnell | DVD Video | 1 | 03-28-2006 06:53 PM |
| Now I introduce some popular software of multimedia | eightsome@gmail.com | DVD Video | 0 | 03-28-2006 02:29 PM |
| Burning Problem with video files | LouisG | DVD Video | 0 | 10-09-2004 07:18 PM |