lustrec-tests / vhdl_json / vhdl_files / 2-exportOK / ghdl / ghdl / testsuite / gna / issue143 / universal_conversion_tb.vhd @ 3fd18385
History | View | Annotate | Download (390 Bytes)
1 | 3fd18385 | Arnaud Dieumegard | use std.textio.all; |
---|---|---|---|
2 | |||
3 | library ieee; |
||
4 | use ieee.std_logic_1164.all; |
||
5 | |||
6 | entity universal_conversion_tb is |
||
7 | end universal_conversion_tb; |
||
8 | |||
9 | architecture test of universal_conversion_tb is |
||
10 | |||
11 | constant TEST_VAL : time := 1000.0/100 * 1 ns; |
||
12 | |||
13 | begin |
||
14 | |||
15 | process |
||
16 | variable l : line; |
||
17 | begin |
||
18 | write(l, string'("TEST_VAL = ")); |
||
19 | write(l, TEST_VAL); |
||
20 | writeline(output, l); |
||
21 | wait; |
||
22 | end process; |
||
23 | |||
24 | end; |