blob: 09b15e986f54371ed33816366b05b2b0e0685220 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// Copyright 2020 Ettus Research, A National Instruments Brand
//
// SPDX-License-Identifier: LGPL-3.0-or-later
//
// Package: PkgAxiLite
// Description:
// AXI4-Lite is an ARM standard for lighter weight registers
// axis based on the AXI4 protocol. For more information
// on the spec see - https://developer.arm.com/docs/ihi0022/d
//
// This package contains types used for AxiLiteIf.
//
//-----------------------------------------------------------------------------
// AXI4-Lite Package
//-----------------------------------------------------------------------------
package PkgAxiLite;
typedef enum logic [1:0] {OKAY=0,SLVERR=2,DECERR=3} resp_t;
endpackage : PkgAxiLite
|