本文討論了如何設(shè)計有效的testbench,適合剛接觸testbench不久的用戶閱讀提高 (xilinx公司編寫)
標(biāo)簽: Testbenches Efficient Writing
上傳時間: 2013-10-11
上傳用戶:123454
In this paper, we discuss efficient coding and design styles using verilog. This can beimmensely helpful for any digital designer initiating designs. Here, we address different problems rangingfrom RTL-Gate Level simulation mismatch to race conditions in writing behavioral models. All theseproblems are accompanied by an example to have a better idea, and these can be taken care off if thesecoding guidelines are followed. Discussion of all the techniques is beyond the scope of this paper, however,here we try to cover a few of them.
標(biāo)簽: Efficient Verilog Digital Coding
上傳時間: 2013-11-23
上傳用戶:我干你啊
This book introduces embedded systems to C and C++ programmers. Topics include testing memory devices, writing and erasing Flash memory, verifying nonvolatile memory contents, controlling on-chip peripherals, device driver design and implementation, optimizing embedded code for size and speed, and making the most of C++ without a performance penalty. Pages : 336 Slots : 1
標(biāo)簽: programmers introduces embedded include
上傳時間: 2013-12-10
上傳用戶:shizhanincc
vs.lib is a math library in C++ with a set of linear algebra and integrable / differentiable objects. vs.lib is a rapid-proto-typing tool which makes programming in numerical applications as easy as writing mathematical expressions.
標(biāo)簽: differentiable integrable algebra library
上傳時間: 2015-03-03
上傳用戶:PresidentHuang
Overview In this chapter I introduce Borland C++Builder (BCB) and explain what it is about. I also devote considerable time to explaining the purpose of this book and the philosophy behind my approach to technical writing. Technical subjects covered in this chapter include Creating a simple Multimedia RAD program that plays movies, WAV files, and MIDI files. Shutting down the BCB RAD programming tools and writing raw Windows API code instead. Creating components dynamically on the heap at runtime. Setting up event handlers (closures) dynamically at runtime. A brief introduction to using exceptions. This topic is covered in more depth in Chapter 5, "Exceptions." A brief introduction to ANSI strings. This subject is covered in more depth in Chapter 3, "C++Builder and the VCL." Using the online help. Greping through the include and source files that come with the product and with this book.
標(biāo)簽: introduce Overview Borland Builder
上傳時間: 2014-01-04
上傳用戶:小鵬
windows外殼擴(kuò)展編程入門實(shí)例 關(guān)于Windows 外殼擴(kuò)展方面的文章私心以為最好的應(yīng)當(dāng)算是Michael Dunn 的The Complete Idiot’s Guide to Writing Shell Extensions 我也曾想過所謂眼前有景道不 得崔顥題詩在上頭既然已經(jīng)有了這么好的文章我還來饒舌算什么不過轉(zhuǎn)念再想文章 雖好畢竟是為Visual C++的用戶看的對Delphi 的使用者來說似乎有點(diǎn)不公平我最初編 寫Shell Extension 的時候用的也是Visual C++ 不過現(xiàn)在已經(jīng)轉(zhuǎn)而使用Delphi 覺得兩者 畢竟還是有所不同因此就有了這篇文章算是將我的一些心得體會和大家分享 我最初的打算是將Michael Dunn 文章中涉及的全部內(nèi)容全部轉(zhuǎn)成Delphi 程序再加上我
標(biāo)簽: Complete windows Windows Michael
上傳時間: 2014-02-04
上傳用戶:xyipie
本設(shè)備驅(qū)動教程是一本實(shí)際操作指南,介紹如何開發(fā)簡單的 SolarisTM 操作系統(tǒng)(Solaris OS)驅(qū)動程序。設(shè)備驅(qū)動教程 還闡述了設(shè)備驅(qū)動程序在 Solaris 操作系統(tǒng)中的工作原理。本書與 Writing Device Drivers 配套。Writing Device Drivers 是一個詳盡的參考文檔,對多種設(shè)備和驅(qū)動程序進(jìn)行了討論。設(shè)備驅(qū)動教程探討了完整的驅(qū)動程序,但沒有對所有驅(qū)動程序類型進(jìn)行全面分析。設(shè)備驅(qū)動教程中的很多地方都引用了 Writing Device Drivers 及其他書籍的內(nèi)容,以提供更詳細(xì)的信息。需要開發(fā)、安裝和配置 Solaris 操作系統(tǒng)設(shè)備驅(qū)動程序者,以及需要維護(hù)現(xiàn)有驅(qū)動程序或?yàn)楝F(xiàn)有的 Solaris 操作系統(tǒng)驅(qū)動程序添加新功能者,都應(yīng)閱讀本書。本書提供的內(nèi)核方面的信息也有助于診斷和排除在安裝或配置 Solaris 系統(tǒng)時遇到的問題。
標(biāo)簽: 設(shè)備驅(qū)動 教程 操作
上傳時間: 2013-12-30
上傳用戶:古谷仁美
10分鐘學(xué)會SQl第三版 Sams Teach Yourself SQL in 10 Minutes has established itself as the gold standard for introductory SQL books, offering a fast-paced accessible tutorial to the major themes and techniques involved in applying the SQL language. Forta s examples are clear and his writing style is crisp and concise. As with earlier editions, this revision includes coverage of current versions of all major commercial SQL platforms. New this time around is coverage of MySQL, and PostgreSQL. All examples have been tested against each SQL platform, with incompatibilities or platform distinctives called out and explained.
標(biāo)簽: established Yourself standard Minutes
上傳時間: 2014-07-07
上傳用戶:Pzj
Although there has been a lot of AVL tree libraries available now, nearly all of them are meant to work in the random access memory(RAM). Some of them do provide some mechanism for dumping the whole tree into a file and loading it back to the memory in order to make data in that tree persistent. It serves well when there s just small amount of data. When the tree is somewhat bigger, the dumping/loading process could take a lengthy time and makes your mission-critical program less efficient. How about an AVL tree that can directly use the disk for data storage ? If there s something like that, we won t need to read through the whole tree in order to pick up just a little bit imformation(a node), but read only the sectors that are neccssary for locating a certain node and the sectors in which that node lies. This is my initial motivation for writing a storage-media independent AVL Tree. However, as you step forth, you would find that it not only works fine with disks but also fine with memorys, too.
標(biāo)簽: available libraries Although nearly
上傳時間: 2014-01-22
上傳用戶:zhoujunzhen
This book introduces embedded systems to C and C++ programmers. Topics include testing memory devices, writing and erasing Flash memory, verifying nonvolatile memory contents, controlling on-chip peripherals, device driver design and implementation, optimizing embedded code for size and speed, and making the most of C++ without a performance penalty.
標(biāo)簽: programmers introduces embedded include
上傳時間: 2015-06-22
上傳用戶:VRMMO
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1