Jump to content

Recommended Posts

Posted

Looking for an example running at SC_FS with the help of SC_CLOCK or any other way, small example with 2.2 and 2.3?

Do i need to set any specific parameter before simulation, i am getting the following error

Error: (E102) sc_clock high time is zero: increase the period or increase the duty cycle:

Regards

Prasanna

Posted

Sorry its my mistake and i used set_time resolution at the time of elaboration, but didn't notice my sc_clock declaration.

Before (error)

sc_clock       clk("clk",20, SC_FS);

sc_set_time_resolution(1,SC_FS);

After (start working)

sc_set_time_resolution(1,SC_FS);

sc_clock       clk("clk",20, SC_FS);

Thanks and closing the topic.

Regards, Prasanna

 

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