blob: 5ddf3ba6fae915c4b971957ddac523ec932833e1 [file] [log] [blame]
Nico Huber5e9b1b52016-10-08 22:09:33 +02001--
2-- Copyright (C) 2016 secunet Security Networks AG
3--
4-- This program is free software; you can redistribute it and/or modify
5-- it under the terms of the GNU General Public License as published by
Nico Huberaab715f2016-10-18 00:22:25 +02006-- the Free Software Foundation; either version 2 of the License, or
7-- (at your option) any later version.
Nico Huber5e9b1b52016-10-08 22:09:33 +02008--
9-- This program is distributed in the hope that it will be useful,
10-- but WITHOUT ANY WARRANTY; without even the implied warranty of
11-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-- GNU General Public License for more details.
13--
14
15generic
16 type Index_T is (<>);
17package HW.Sub_Regs is
18
19 type T is record
20 Byte_Offset : Natural;
21 MSB : Natural;
22 LSB : Natural;
23 end record;
24
25 type Array_T is array (Index_T) of T;
26
27end HW.Sub_Regs;