Amira Mehri Posted February 17, 2017 Report Share Posted February 17, 2017 Hello, It is my first participation. I'm a master computer sciences student. I had program a code with SystemC 2.3.1 (includes TLM). I have some questions. Does SystemC 2.3.1 (includes TLM) includes TLM 1.0 ? What is the benefits of TLM 1.0? Can i use GTKWave with TLM 1.0 or it works just with SystemC RTL? What is the difference between TLM 1.0 and TLM 2.0 ? I would like to more understand TLM 1.0 any documents suggestions? Any help? Thanks. Quote Link to comment Share on other sites More sharing options...
Amira Mehri Posted February 18, 2017 Author Report Share Posted February 18, 2017 Any help? please. Quote Link to comment Share on other sites More sharing options...
sraman Posted February 28, 2017 Report Share Posted February 28, 2017 Hi, TLM 1.0 still a current std. it is supporting/providing low level interfaces for transaction level modeling(like packets/ not pin level) . It is widely using in SV-OVM based Env. TLM 1.0 was not designed specifically for bus modeling or interoperability. Please refer to the following page. http://accellera.org/downloads/standards/systemc thanks, Sudha. Amira Mehri 1 Quote Link to comment Share on other sites More sharing options...
Amira Mehri Posted March 2, 2017 Author Report Share Posted March 2, 2017 Thanks Sraman, I already see this documents, I had program my code with different way. I hadn’t put a class for every module i do it like this : decoder.h SC_MODULE (decoder) {sc_port<read_flit_if<int> > in; sc_port<write_flit_if<int> > out; void(deoding); SC_CTOR(decoding) { SC_THREAD(decoding); } }; decoder.cpp void decoder::decoding() {................ ................ } It works but i want to know if it is a correct way or not with TLM1.0? I want to know too, does modules communicate together just by sc_channel? Thanks for your help. 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.