entity loop2 is end; architecture behav of loop2 is begin process variable i : natural := 0; begin report "hello"; loop exit when i = 10; wait for 1 ns; report "hello2"; i := i + 1; end loop; report "SUCCESS"; wait; end process; end behav; /usr/bin/qos-stat?h=master' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/package/qos-scripts/files/usr/bin/qos-stat
blob: fc940a82183ef3211aef3d02d6f197d44af0b825 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16