23 lines
522 B
C++
23 lines
522 B
C++
// Verilated -*- C++ -*-
|
|
// DESCRIPTION: Verilator output: Prototypes for DPI import and export functions.
|
|
//
|
|
// Verilator includes this file in all generated .cpp files that use DPI functions.
|
|
// Manually include this file where DPI .c import functions are declared to ensure
|
|
// the C functions match the expectations of the DPI imports.
|
|
|
|
#ifndef VERILATED_VMAIN__DPI_H_
|
|
#define VERILATED_VMAIN__DPI_H_ // guard
|
|
|
|
#include "svdpi.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // guard
|