17 lines
815 B
Systemverilog
17 lines
815 B
Systemverilog
|
// File: /data/work/yzzhang/hdl/sv/readout_AWG_RM/codegen/dll/nco/nco_dpi_pkg.sv
|
||
|
// Created: 2024-10-26 13:13:02
|
||
|
// Generated by MATLAB 9.13 and HDL Verifier 7.0
|
||
|
|
||
|
//`timescale 1ns / 1ns
|
||
|
package nco_dpi_pkg;
|
||
|
|
||
|
// Declare imported C functions
|
||
|
import "DPI-C" function chandle DPI_nco_initialize(input chandle existhandle);
|
||
|
import "DPI-C" function chandle DPI_nco_reset(input chandle objhandle,input real fcw,input real ptw,input real clr,input real acc,output real result_cos,output real result_sin,output real result_acc);
|
||
|
import "DPI-C" function void DPI_nco(input chandle objhandle,input real fcw,input real ptw,input real clr,input real acc,output real result_cos,output real result_sin,output real result_acc);
|
||
|
import "DPI-C" function void DPI_nco_terminate(input chandle existhandle);
|
||
|
|
||
|
|
||
|
|
||
|
endpackage : nco_dpi_pkg
|