blob: e3d6b2b4b2bc88734651390e9dd54f9cbbafb7ea [file] [log] [blame]
Nico Huber5e9b1b52016-10-08 22:09:33 +02001--
2-- Copyright (C) 2015 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
15
16package HW.Debug is
17
18 procedure Put (Item : String);
19 procedure Put_Line (Item : String);
20 procedure New_Line;
21
22 procedure Put_Word8 (Item : Word8);
23 procedure Put_Word16 (Item : Word16);
24 procedure Put_Word32 (Item : Word32);
25 procedure Put_Word64 (Item : Word64);
26
27 procedure Put_Int8 (Item : Int8);
28 procedure Put_Int16 (Item : Int16);
29 procedure Put_Int32 (Item : Int32);
30 procedure Put_Int64 (Item : Int64);
31
32 procedure Put_Reg8 (Name : String; Item : Word8);
33 procedure Put_Reg16 (Name : String; Item : Word16);
34 procedure Put_Reg32 (Name : String; Item : Word32);
35 procedure Put_Reg64 (Name : String; Item : Word64);
36
37 procedure Put_Buffer (Name : String; Buf : in Buffer; Len : in Buffer_Range);
38
39 procedure Set_Register_Write_Delay (Value : Word64);
Nico Huber455ed642018-05-18 15:21:23 +020040 procedure Register_Write_Wait;
Nico Huber5e9b1b52016-10-08 22:09:33 +020041end HW.Debug;
42
43-- vim: set ts=8 sts=3 sw=3 et: