michaelpiran3 Posted November 18, 2019 Report Share Posted November 18, 2019 Hi everyone, I've this link problem, it seems thant the linker cannot see some files (i think sc_module.h or sc_time.h). In my opinion systemc library is correctly set. Can someone help me? Maybe a problem with debugger(DebugDll)? Thanks a lot!! -Michael Quote Link to comment Share on other sites More sharing options...
SiGa Posted November 19, 2019 Report Share Posted November 19, 2019 Are you missing the function prototype in the "Cnt_time.h" class ? Or does the parameter list not match with what you implemented in "Cnt_time.cpp"? Btw you for loop wont work like this. A few suggestions. for (int i = 0; i < 20; i++) { wait(20, SC_SEC); cout << i << endl; cout << "INFO: Time is " << sc_time_stamp() << "!" << endl; } Quote Link to comment Share on other sites More sharing options...
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.