Jump to content

Processing core design using systemc


avikbose1145

Recommended Posts

Dear all, can any one give me some guidance...I want to design a processing core like any general purpose processor and want it to execute real time program code...like it will have its own instruction set format and it will execute the target code generated for it...using systemc what are the footsteps i need to follow...i will be obliged highly for your help 

Link to comment
Share on other sites

Dear Roman sir, i wish to design an ISA (instruction set simulator). I think for synthesizable simulator i need to implement it on a gate level which for now i do not need. Will be obliged for your help

 

In that case you don't need SystemC. You can write your ISA simulator in pure C++.  First learn your ISA, then write a CPU state model (registers), then write instruction parser (decoder and interpreter). 

Link to comment
Share on other sites

In that case you don't need SystemC. You can write your ISA simulator in pure C++.  First learn your ISA, then write a CPU state model (registers), then write instruction parser (decoder and interpreter). 

Roman sir, i am working on multicore network on chip where i need to test the network as well as the processing time of a thread...i need an event driven simulation which includes both the computation and communication...in that case can i design the processing core using systemc...because in c++ i can not accomplish the cycle accurate processing time...need your precious suggestions.

Link to comment
Share on other sites

Roman sir, i am working on multicore network on chip where i need to test the network as well as the processing time of a thread...i need an event driven simulation which includes both the computation and communication...in that case can i design the processing core using systemc...because in c++ i can not accomplish the cycle accurate processing time...need your precious suggestions.

 

In that case you will need to learn SystemC TLM modeling. You can still write your CPU model in pure C++ but provide some hooks for event notifications and cycle count tracking.

Unfortunately, (In my experience) there is no good learning material for beginners. 

You can check Duolos TLM tutorial: https://www.doulos.com/knowhow/systemc/tlm2/tutorial__1/

On GreenSocs Git there are examples of integrating CPU models with SystemC/TLM https://git.greensocs.com/explore/projects

Link to comment
Share on other sites

In that case you will need to learn SystemC TLM modeling. You can still write your CPU model in pure C++ but provide some hooks for event notifications and cycle count tracking.

Unfortunately, (In my experience) there is no good learning material for beginners. 

You can check Duolos TLM tutorial: https://www.doulos.com/knowhow/systemc/tlm2/tutorial__1/

On GreenSocs Git there are examples of integrating CPU models with SystemC/TLM https://git.greensocs.com/explore/projects

Thank you Sir

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