<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments for SCLive</title>
	<atom:link href="http://sclive.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://sclive.wordpress.com</link>
	<description>A Linux Live Distribution for SystemC</description>
	<pubDate>Mon, 06 Oct 2008 15:20:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on SystemC Tutorial: threads, methods and sc_spawn by immubreRerie</title>
		<link>http://sclive.wordpress.com/2008/01/10/systemc-tutorial-threads-methods-and-sc_spawn/#comment-506</link>
		<dc:creator>immubreRerie</dc:creator>
		<pubDate>Mon, 22 Sep 2008 18:34:51 +0000</pubDate>
		<guid isPermaLink="false">http://sclive.wordpress.com/2008/01/10/systemc-tutorial-threads-methods-and-sc_spawn/#comment-506</guid>
		<description>thats for sure, man</description>
		<content:encoded><![CDATA[<p>thats for sure, man</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using K3b for Customizing SCLive by kuku1</title>
		<link>http://sclive.wordpress.com/2006/07/17/using-linux-k3b-for-customizing-sclive/#comment-505</link>
		<dc:creator>kuku1</dc:creator>
		<pubDate>Tue, 05 Aug 2008 12:07:26 +0000</pubDate>
		<guid isPermaLink="false">https://sclive.wordpress.com/2006/07/17/using-linux-k3b-for-customizing-sclive/#comment-505</guid>
		<description>Is K3b good for Windows XP ? And if yes how do I download K3b?</description>
		<content:encoded><![CDATA[<p>Is K3b good for Windows XP ? And if yes how do I download K3b?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SystemC Tutorial: modules by GGSoSo</title>
		<link>http://sclive.wordpress.com/2006/09/08/systemc-tutorial-modules/#comment-502</link>
		<dc:creator>GGSoSo</dc:creator>
		<pubDate>Wed, 07 May 2008 08:05:55 +0000</pubDate>
		<guid isPermaLink="false">http://sclive.wordpress.com/2006/09/08/systemc-tutorial-modules/#comment-502</guid>
		<description>Very useful tutorial for beginners. And thank you for the shared SCLive CD.</description>
		<content:encoded><![CDATA[<p>Very useful tutorial for beginners. And thank you for the shared SCLive CD.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SystemC Tutorial: ports by malex</title>
		<link>http://sclive.wordpress.com/2006/10/20/systemc-tutorial-ports/#comment-491</link>
		<dc:creator>malex</dc:creator>
		<pubDate>Mon, 10 Mar 2008 19:42:03 +0000</pubDate>
		<guid isPermaLink="false">http://sclive.wordpress.com/2006/10/20/systemc-tutorial-ports/#comment-491</guid>
		<description>loool there is a problem with the html tags...

both I and sclive said that is possible, but giving a wrong readable example.

you have to use the  instead of the ( and the )

sc_in(my_struct) packet_rx;</description>
		<content:encoded><![CDATA[<p>loool there is a problem with the html tags&#8230;</p>
<p>both I and sclive said that is possible, but giving a wrong readable example.</p>
<p>you have to use the  instead of the ( and the )</p>
<p>sc_in(my_struct) packet_rx;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SystemC Tutorial: ports by malex</title>
		<link>http://sclive.wordpress.com/2006/10/20/systemc-tutorial-ports/#comment-490</link>
		<dc:creator>malex</dc:creator>
		<pubDate>Mon, 10 Mar 2008 19:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://sclive.wordpress.com/2006/10/20/systemc-tutorial-ports/#comment-490</guid>
		<description>yes, such as: 

sc_in packet_rx;</description>
		<content:encoded><![CDATA[<p>yes, such as: </p>
<p>sc_in packet_rx;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SystemC Tutorial: threads, methods and sc_spawn by sclive</title>
		<link>http://sclive.wordpress.com/2008/01/10/systemc-tutorial-threads-methods-and-sc_spawn/#comment-488</link>
		<dc:creator>sclive</dc:creator>
		<pubDate>Tue, 26 Feb 2008 23:17:26 +0000</pubDate>
		<guid isPermaLink="false">http://sclive.wordpress.com/2008/01/10/systemc-tutorial-threads-methods-and-sc_spawn/#comment-488</guid>
		<description>Hi there,

Good point about the SC_CTHREADs. I did leave them out because they were deamed as deprecated since you could achieve much of the same with say an SC_THREAD and a sensitivity list that had something like clk.pos() inside it.
Nevertheless there is a lot of activity recently on SystemC synthesis and in this specific context SC_CTHREAD are the way ahead to model clocked logic. More so since the SC_THREAD are not supported in SystemC synthesis.

Thanks for your remark, I should put a little tutorial on the subject of SystemC synthesis and restore the SC_CTHREAD to its rightfull place.

As far as dont_initialize() is conserned, it's purpose is to avoid processes to be executed at initialisation time ( straight after elaboration and just before simulation). Its often found when you may encouter undeterministic behaviour depending on the order of execution of your processes. In other work if one process starting first  may block another process.
I hope that helps, I think I would need an example to better illustrate that.

Regards,

David Cabanis</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>Good point about the SC_CTHREADs. I did leave them out because they were deamed as deprecated since you could achieve much of the same with say an SC_THREAD and a sensitivity list that had something like clk.pos() inside it.<br />
Nevertheless there is a lot of activity recently on SystemC synthesis and in this specific context SC_CTHREAD are the way ahead to model clocked logic. More so since the SC_THREAD are not supported in SystemC synthesis.</p>
<p>Thanks for your remark, I should put a little tutorial on the subject of SystemC synthesis and restore the SC_CTHREAD to its rightfull place.</p>
<p>As far as dont_initialize() is conserned, it&#8217;s purpose is to avoid processes to be executed at initialisation time ( straight after elaboration and just before simulation). Its often found when you may encouter undeterministic behaviour depending on the order of execution of your processes. In other work if one process starting first  may block another process.<br />
I hope that helps, I think I would need an example to better illustrate that.</p>
<p>Regards,</p>
<p>David Cabanis</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SystemC Tutorial: threads, methods and sc_spawn by Gopal S</title>
		<link>http://sclive.wordpress.com/2008/01/10/systemc-tutorial-threads-methods-and-sc_spawn/#comment-487</link>
		<dc:creator>Gopal S</dc:creator>
		<pubDate>Thu, 21 Feb 2008 20:18:45 +0000</pubDate>
		<guid isPermaLink="false">http://sclive.wordpress.com/2008/01/10/systemc-tutorial-threads-methods-and-sc_spawn/#comment-487</guid>
		<description>Great article. Can you also touch upon
SC_CTHREAD and use/not use of dont_initialize()?
Thanks</description>
		<content:encoded><![CDATA[<p>Great article. Can you also touch upon<br />
SC_CTHREAD and use/not use of dont_initialize()?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SciTE Editor Module for SCLive by Can you use Hypnosis when dating?</title>
		<link>http://sclive.wordpress.com/2006/08/10/scite-editor-module-for-sclive/#comment-217</link>
		<dc:creator>Can you use Hypnosis when dating?</dc:creator>
		<pubDate>Sun, 29 Jul 2007 18:27:26 +0000</pubDate>
		<guid isPermaLink="false">https://sclive.wordpress.com/2006/08/10/scite-editor-module-for-sclive/#comment-217</guid>
		<description>Great information here. Thanks for all your work.</description>
		<content:encoded><![CDATA[<p>Great information here. Thanks for all your work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SystemC Tutorial: modules by Aamir Mehmood</title>
		<link>http://sclive.wordpress.com/2006/09/08/systemc-tutorial-modules/#comment-198</link>
		<dc:creator>Aamir Mehmood</dc:creator>
		<pubDate>Wed, 18 Jul 2007 12:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://sclive.wordpress.com/2006/09/08/systemc-tutorial-modules/#comment-198</guid>
		<description>Good Effort buddy!

But try to expand it a bit more and elaborate more on the software side of systemC coding. I am weak at that side.

A question, see the code:

class pv2rtl: public sc_module, trans_if {
public:

sc_in 


pv2rtl(sc_module_name nm) : sc_module(nm),
tlm_slave("tlm_slave"),

.....
....

so, How shall we write it in the VHDL type notation...I am more easy with that representation..... see U</description>
		<content:encoded><![CDATA[<p>Good Effort buddy!</p>
<p>But try to expand it a bit more and elaborate more on the software side of systemC coding. I am weak at that side.</p>
<p>A question, see the code:</p>
<p>class pv2rtl: public sc_module, trans_if {<br />
public:</p>
<p>sc_in </p>
<p>pv2rtl(sc_module_name nm) : sc_module(nm),<br />
tlm_slave(&#8221;tlm_slave&#8221;),</p>
<p>&#8230;..<br />
&#8230;.</p>
<p>so, How shall we write it in the VHDL type notation&#8230;I am more easy with that representation&#8230;.. see U</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SystemC Tutorial: modules by vavofe</title>
		<link>http://sclive.wordpress.com/2006/09/08/systemc-tutorial-modules/#comment-105</link>
		<dc:creator>vavofe</dc:creator>
		<pubDate>Mon, 25 Jun 2007 00:43:21 +0000</pubDate>
		<guid isPermaLink="false">http://sclive.wordpress.com/2006/09/08/systemc-tutorial-modules/#comment-105</guid>
		<description>&lt;a href="http://ford2007.freehostia.com/ford-portland-oregon.html" rel="nofollow"&gt;ford portland oregon&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p><a href="http://ford2007.freehostia.com/ford-portland-oregon.html" rel="nofollow">ford portland oregon</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
