Jump to content

Writing a System C wrapper for C++


Muds

Recommended Posts

Hi,

   Thanks for the reply.

 

  I have a C++ reference model to be used in UVM Environment.

MY approach was to wrap/call the C++ model in System C and connect it to System Verilog using ML_CONNECT.

 

the C++ model looks like this

 

void ex_top (int size, complex<double>* data_in, complex<double> * data_out))

{

 

 

};

Link to comment
Share on other sites

All you need is not only SystemC wrapper but ML-UVM wrapper also,  since I assume your C++ model is working on transaction level , you just need to register your port with ML-Library and create a replica of your seq_item in C++ and register the same with ML-UVM lib , on the UVM side connnect the analysis port with the ML-register_SC-export and through the transaction.

 

About SystemC registry, create a SC_MODULE and SC_CTOR to get register with SystemC Lib, rest functional call be used intact.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...