quic/qbox
Loading...
Searching...
No Matches
initiator-signal-socket.h
1/*
2 * This file is part of libgsutils
3 * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All Rights Reserved.
4 * Author: GreenSocs 2022
5 *
6 * SPDX-License-Identifier: BSD-3-Clause
7 */
8
9#ifndef _LIBGSUTILS_PORTS_INITIATOR_SIGNAL_SOCKET_H
10#define _LIBGSUTILS_PORTS_INITIATOR_SIGNAL_SOCKET_H
11
12#include <systemc>
13
14template <class T>
15using InitiatorSignalSocket = sc_core::sc_port<sc_core::sc_signal_inout_if<T>, 1, sc_core::SC_ZERO_OR_MORE_BOUND>;
16
17
18#endif