scc 2025.09
SystemC components library
target_info_if.h
1/*
2 * target_info_if.h
3 *
4 * Created on: Aug 23, 2023
5 * Author: eyckj
6 */
7
8#ifndef _AXI_PE_TARGET_INFO_IF_H_
9#define _AXI_PE_TARGET_INFO_IF_H_
10
11#include <cstddef>
12
13namespace axi {
14namespace pe {
15
17public:
18 virtual ~target_info_if() = default;
19
20 virtual size_t get_outstanding_tx_count() = 0;
21};
22
23} /* namespace pe */
24} /* namespace axi */
25
26#endif /* _AXI_PE_TARGET_INFO_IF_H_ */
protocol engine implementations
TLM2.0 components modeling AHB.