Jump to content

Communicate between a module and its submodules


lucas1

Recommended Posts

I'm really new to SystemC and I've recently started developing a learning program where I need to comunicate between a module that has sub-modules created inside it.  The pseudo-code looks something like this:

 

module rec
{
	std::vector<sender *> vc;
    constructor(rec)
    {
    	SC_THREAD(main);  
    }
    main()
   	{
    	do_some_stuff();
      	wait(sender_event);
      	do_more_stuff();
    }
}

module sender
{
	[...]
}

 

What would be the best and simplest way to communicate between the two of them? Can I use events?

 

Thanks in advance, Lucas

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...