Suchen und Finden

Titel

Autor/Verlag

Inhaltsverzeichnis

Nur eBooks für mein Endgerät anzeigen:

 

Newsletter

The Verillog® Hardware Description Language

The Verillog® Hardware Description Language

von: Donald E. Thomas, Philip R. Moorby

Kluwer Academic Publishers, 2002

ISBN: 9780306476662, 394 Seiten

5. Auflage

Format: PDF, OL

Mac OSX,Windows PC Apple iPad, Android Tablet PC's Online-Lesen für: Linux,Mac OSX,Windows PC

Preis: 87,95 EUR

Ersparnis: 11,51 EUR

  • Mein buntes Spielebuch - 111 Spiele für die ganze Familie
    Zu Besuch bei den wilden Tieren - Ein Naturbuch für Kinder
    Mediengeschichte - Vom asiatischen Buchdruck zum Fernsehen
    Schnittmuster - Thriller
    Politik braucht Strategie - Taktik hat sie genug - Ein Kursbuch
    Das große Buch der Kinderspiele - Klassische und neue Spiele für jede Gelegenheit und jede Altersgruppe
    Republikanismus und Kosmopolitismus - Eine ideengeschichtliche Studie
    Meine 80 schönsten Kinderlieder - Mit Noten und Gitarrengriffen
  • Kartierte Nationalgeschichte - Geschichtsatlanten im internationalen Vergleich 1860-1960
    Mein erster Zeichenkurs - Mit Schritt-für-Schritt-Anleitungen
    Erdbeerflecken
    Feengeschichten - So macht Lesenlernen einfach Freude!
    Zieh! Mich! Aus!
    Zu Besuch bei den Kindern der Welt - Mein erster Bildatlas
    Zu Besuch bei den Tierbabys in aller Welt - Ein Naturbuch für Kinder

     

     

 

Mehr zum Inhalt

The Verillog® Hardware Description Language


 

2 Logic Synthesis (p. 35-36)

In this chapter, the use of the language as an input specification for synthesis is presented. The concern is developing a functionally correct specification while allowing a synthesis CAD tool to design the final gate level structure of the system. Care must be taken in writing a description so that it can be used in both simulation and synthesis.

2.1 Overview of Synthesis

The predominate synthesis technology in use today is logic synthesis. A system is specified at the register-transfer level of design; by using logic synthesis tools, a gate level implementation of the system can be obtained. The synthesis tools are capable of optimizing a design with respect to various constraints, including timing and/or area. They use a technology library file to specify the components to be used in the design.

2.1.1 Register-Transfer Level Systems

A register-transfer level description may contain parts that are purely combinational while others may specify sequential elements such as latches and flip flops. There may also be a finite state machine description, specifying a state transition graph.

A logic synthesis tool compiles a register-transfer level design using two main phases. The first is a technology independent phase where the design is read in and manipulated without regard to the final implementation technology. In this phase, major simplifications in the combinational logic may be made. The second phase is technology mapping where the design is transformed to match the components in a component library. If there are only two-input gates in the library, the design is transformed so that each logic function is implementable by a component in the library. Indeed, synthesis tools can transform one gate level description into another, providing the capability of redesigning a circuit when a new technology library is used. The attraction of a logic synthesis CAD tool is that it aids in a very complex design process. (After all, did your logic design professor ever tell you what to do when the Karnaugh map had more than five or six variables!) These tools target large combinational design and different technology libraries, providing implementation trade-offs in time and area. Further, they promise functional equivalence of the initial specification and its resulting implementation. Given the complexity of this level of design, these tools improve the productivity of designers in many common design situations. To obtain this increased productivity, we must specify our design in a way that it can be simulated for functional correctness and then synthesized. This chapter discusses methods of describing register-transfer level systems for input to logic synthesis tools.

2.1.2 Disclaimer

The first part of this chapter defines what a synthesizable description for logic synthesis is. There are behaviors that we can describe but that common logic synthesis tools will not be able to design. (Or they may design something you’d want your competitor to implement!) Since synthesis technology is still young, and the task of mapping an arbitrary behavior on to a set of library components is complex, arbitrary behavior specifications are not allowed as inputs to logic synthesis tools. Thus, only a subset of the language may be used for logic synthesis, and the style of writing a description using that subset is restricted. The first part of this chapter describes the subset and restrictions commonly found in logic synthesis specification today. Our discussion of logic synthesis is based on experience using current tools. If you use others, your mileage may vary. Read the synthesis tool manual closely.