| Nico Huber | 5e9b1b5 | 2016-10-08 22:09:33 +0200 | [diff] [blame^] | 1 | -- |
| 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 |
| 6 | -- the Free Software Foundation; version 2 of the License. |
| 7 | -- |
| 8 | -- This program is distributed in the hope that it will be useful, |
| 9 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | -- GNU General Public License for more details. |
| 12 | -- |
| 13 | |
| 14 | |
| 15 | package HW.Debug is |
| 16 | |
| 17 | procedure Put (Item : String); |
| 18 | procedure Put_Line (Item : String); |
| 19 | procedure New_Line; |
| 20 | |
| 21 | procedure Put_Word8 (Item : Word8); |
| 22 | procedure Put_Word16 (Item : Word16); |
| 23 | procedure Put_Word32 (Item : Word32); |
| 24 | procedure Put_Word64 (Item : Word64); |
| 25 | |
| 26 | procedure Put_Int8 (Item : Int8); |
| 27 | procedure Put_Int16 (Item : Int16); |
| 28 | procedure Put_Int32 (Item : Int32); |
| 29 | procedure Put_Int64 (Item : Int64); |
| 30 | |
| 31 | procedure Put_Reg8 (Name : String; Item : Word8); |
| 32 | procedure Put_Reg16 (Name : String; Item : Word16); |
| 33 | procedure Put_Reg32 (Name : String; Item : Word32); |
| 34 | procedure Put_Reg64 (Name : String; Item : Word64); |
| 35 | |
| 36 | procedure Put_Buffer (Name : String; Buf : in Buffer; Len : in Buffer_Range); |
| 37 | |
| 38 | procedure Set_Register_Write_Delay (Value : Word64); |
| 39 | Procedure Register_Write_Wait; |
| 40 | end HW.Debug; |
| 41 | |
| 42 | -- vim: set ts=8 sts=3 sw=3 et: |