<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>SystemC</title>
<link>http://www.fpgastudy.com/a/course/SystemC/</link>
<description>FPGA教程 / SystemC</description>
<language>zh-cn</language>
<generator><![CDATA[Copyright &amp;copy; 2002-2009 DEDECMS. 织梦科技 版权所有]]></generator>
<webmaster>zjl_8574@126.com</webmaster>
<item>
    <title><![CDATA[2.6 SystemC模块的数据成员]]></title>
    <link>http://www.fpgastudy.com/a/course/SystemC/591.html</link>
    <description><![CDATA[SC_MODULE定义的模块本质上是一个结构体，如果不特别声明，其所有成员是公有的。 设计者可以声明内部变量来保存模块内部的数据。内部数据存储类型可以是任何合法的SystemC类型、C]]></description>
    <pubDate>2010-03-01</pubDate>
    <category>SystemC</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[2.5 C++析构函数]]></title>
    <link>http://www.fpgastudy.com/a/course/SystemC/590.html</link>
    <description><![CDATA[析构函数一般只在需要释放内存的情况下才被使用，SystemC没有定义专门的宏来处理析构函数，析构函数还是按照传统的C++的模式来声明。析构函数仍然使用模块名加～符号标识。析构函]]></description>
    <pubDate>2010-03-01</pubDate>
    <category>SystemC</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[2.4 SystemC-用SC_CTOR描述构造函数]]></title>
    <link>http://www.fpgastudy.com/a/course/SystemC/589.html</link>
    <description><![CDATA[模块的一个基本组成部分就是它的构造函数，熟悉C++的读者对此并不陌生。模块的构造函数完成创建和初始化一个模块的最初工作，它在一个模块的实例被创建时就被执行。C++中的构造]]></description>
    <pubDate>2010-03-01</pubDate>
    <category>SystemC</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[2.3 SystemC-用SC_MODULE定义模块]]></title>
    <link>http://www.fpgastudy.com/a/course/SystemC/588.html</link>
    <description><![CDATA[模块是一个设计的最基本的单位，是完成一个特定功能的基本单元。比如一个存储器可以是一个模块，一个FIFO可以是一个模块，一个接口转换电路也可以是一个模块，整个设计就是顶层]]></description>
    <pubDate>2010-03-01</pubDate>
    <category>SystemC</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[2.2 为什么要在设计中 include &amp;lt;systemc.h&amp;gt;]]></title>
    <link>http://www.fpgastudy.com/a/course/SystemC/587.html</link>
    <description><![CDATA[为了顺利进行编译和链接，任何SystemC设计都必须包括合适的SystemC库定义的头文件。SystemC核心库包括2个最基本和重要的名字空间，一是sc_core，另外一个是sc_dt。sc_core是SystemC基本的内核]]></description>
    <pubDate>2010-03-01</pubDate>
    <category>SystemC</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[2.1 从完整的SystemC实例开始]]></title>
    <link>http://www.fpgastudy.com/a/course/SystemC/586.html</link>
    <description><![CDATA[一个SystemC双端口异步读写RAM实例： #ifndefRAM_DP_AR_AW #defineRAM_DP_AR_AW #includesystemc.h #defineDATA_WIDTH8 #defineADDR_WIDTH8 #defineRAM_DEPTH1ADDR_WIDTH SC_MODULE(ram_dp_ar_aw){ sc_insc_uintADDR_WIDTHaddress_0; sc_in bool]]></description>
    <pubDate>2010-03-01</pubDate>
    <category>SystemC</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SystemC在线教程目录]]></title>
    <link>http://www.fpgastudy.com/a/course/SystemC/585.html</link>
    <description><![CDATA[1.1 SystemC的历史 1.2 SystemC的建模能力 1.3 SystemC的本质 1.4 不要忘记了SystemC是C++ 1.5 SystemC与SystemVerilog的比较？ 1.6 一个Hello,SystemC程序 1.7 Visual Studio 2008下如何编译SystemC？ 1.8 Linux下安装Sy]]></description>
    <pubDate>2010-02-25</pubDate>
    <category>SystemC</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[1.8 Linux下安装SystemC]]></title>
    <link>http://www.fpgastudy.com/a/course/SystemC/584.html</link>
    <description><![CDATA[有人喜欢在Linux底下玩SystemC么？安装其实很简单。 下载 下载systemC2.2其实很简单，到 www.systemC.org 网注册一下就可以下载到：systemc-2.2.05jun06.tgz，目前为止最新的文件。（我使用的是fe]]></description>
    <pubDate>2010-02-25</pubDate>
    <category>SystemC</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[1.7 Visual Studio 2008下如何编译SystemC？]]></title>
    <link>http://www.fpgastudy.com/a/course/SystemC/583.html</link>
    <description><![CDATA[一、编译SystemC库 1.下载SystemC library source code。 到 http://www.systemc.org 注册会员账号后，即可下载SystemC library soure code。 2. 以SystemC 2.2.0为例，下载后的文件名喂systemc-2.2.0.tgz，解压到C盘目]]></description>
    <pubDate>2010-02-25</pubDate>
    <category>SystemC</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[1.6 一个Hello,SystemC程序]]></title>
    <link>http://www.fpgastudy.com/a/course/SystemC/582.html</link>
    <description><![CDATA[在学习任何一种语言的时候我们都要学习Hello World程序，这里我们给出一个最简单的 SystemC 程序。其原代码如下： //hello.h #ifndef_HELLO_H #define_HELLO_H #includesystemc.h SC_MODULE(hello){ SC_CTOR(hell]]></description>
    <pubDate>2010-02-25</pubDate>
    <category>SystemC</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[1.5 SystemC与SystemVerilog的比较？]]></title>
    <link>http://www.fpgastudy.com/a/course/SystemC/581.html</link>
    <description><![CDATA[就 SystemC 和 SystemVerilog 这两种语言而言， SystemC 是C++在硬件支持方面的扩展，而 SystemVerilog 则继承了 Verilog，并对 Verilog 在面向对象和验证能力方面进行了扩展。这两种语言均支持诸如]]></description>
    <pubDate>2010-02-25</pubDate>
    <category>SystemC</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[1.4 不要忘记了SystemC是C++]]></title>
    <link>http://www.fpgastudy.com/a/course/SystemC/580.html</link>
    <description><![CDATA[学习和使用 SystemC 的时候不要忘记了 SystemC 是 C++ ，所有以前的 C++ 的东西都可以用。很多人学习了 SystemC ，觉得SystemC 非常不好用，最大的问题，就是忘记了使用基本的 C++ ，从基本的]]></description>
    <pubDate>2010-02-25</pubDate>
    <category>SystemC</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[1.3 SystemC的本质]]></title>
    <link>http://www.fpgastudy.com/a/course/SystemC/579.html</link>
    <description><![CDATA[SystemC是C++的一个硬件扩展库，继承和扩展了C++，这使得它可以建模不同抽象级别的包括软件和硬件的复杂电子系统，它既可以描述纯功能模型和系统体系结构，也可以描述软硬件的具体]]></description>
    <pubDate>2010-02-25</pubDate>
    <category>SystemC</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[1.2 SystemC的建模能力]]></title>
    <link>http://www.fpgastudy.com/a/course/SystemC/578.html</link>
    <description><![CDATA[关于SystemC的典型使用情况，有关数据表明，SystemC用户中的主要用于系统建模和Testbench（68%）、体系架构开发（68%）、事务处理级建模（56%）和硬件/软件协同仿真（56%）。SystemC不是最好]]></description>
    <pubDate>2010-02-25</pubDate>
    <category>SystemC</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[1.1 SystemC的历史]]></title>
    <link>http://www.fpgastudy.com/a/course/SystemC/577.html</link>
    <description><![CDATA[1999年9月，微电子业内的一些一流的EDA公司、IP提供商、半导体制造商及系统和嵌入式软件设计公司在加利福尼亚州Saint Jose举行的嵌入式系统会议上，联合创建了开放SystemC创始会（OSC]]></description>
    <pubDate>2010-02-25</pubDate>
    <category>SystemC</category>
    <author>admin</author>
    <comments>未知</comments>
</item>

</channel>
</rss>

