prasanna.kesavan Posted February 15, 2017 Report Posted February 15, 2017 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 Quote
ralph.goergen Posted February 15, 2017 Report Posted February 15, 2017 Hi. Did you set the time resolution? I think it defaults to pico seconds. See sc_set_time_resolution in the SystemC LRM (IEEE 1666) for details. Greetings Ralph Quote
prasanna.kesavan Posted February 16, 2017 Author Report Posted February 16, 2017 Thank you for the reply. I did the same as it is required. but the result is same. Regards Prasanna Quote
prasanna.kesavan Posted February 16, 2017 Author Report Posted February 16, 2017 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 Quote
Recommended Posts
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.