aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/sr3217/tests.vhd
blob: 8c718dbb704b0ec80770fcf3beadd4c62f9ad418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use std.textio.all; --  Imports the standard textio package.
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.numeric_std.all;

--  Defines a design entity, without any ports.
entity tests is
end tests;

architecture behaviour of tests is
begin
	process
		variable l : line;

		variable a : natural := 1;
	begin
		report "a = " & natural'simple_name(a);
		wait;
	end process;
end behaviour;