Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

Continuous Display

smarcher1
Beginner
584 Views
I am building a simulation using QwickWin and want to continuously update the display of the results. How do I get the window to display before the program ends? I get no error messages & the result displayed at the end is correct. I just do not get the intermediate reults. Can anyone point me to the examples or documentation that would explain this?
0 Kudos
1 Reply
james1
Beginner
584 Views
You could say what you are doing now... Anyhow I'll guess that you want to overwrite using WRITE, here is an example:
program demo ! compile /ccdefault:fortran
use dflib
integer i
do i = 1, 10
  write (6, '(''+'',i)') i
  call SleepQQ (500)
end do
end
James
0 Kudos
Reply