Jump to content

SystemC 2.3.1 includes TLM 1.0


Recommended Posts

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.

Link to comment
Share on other sites

  • 2 weeks later...

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.

Link to comment
Share on other sites

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.

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