blob: 35c16327ecefd915a8767f16796e95a0c66157d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use std.textio.all;
entity tb_dct8 is
end tb_dct8;
architecture beh of tb_dct8 is
signal r : real;
begin
process
variable line0 : line;
begin
r <= 123.0;
write(line0, to_string(r, 8));
writeline(output, line0);
wait;
end process;
end architecture;
|