Jump to content

IEEE 1164: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Ishvara7 (talk | contribs)
No edit summary
Ishvara7 (talk | contribs)
No edit summary
Line 2: Line 2:
The '''[[IEEE]] Standard 1164''' defines a package design unit that contains declarations that support a uniform representation of a logic value in a [[VHDL]] hardware description. The standardization effort was based on the donation of the [[Synopsys]] MVL-9 type declaration.
The '''[[IEEE]] Standard 1164''' defines a package design unit that contains declarations that support a uniform representation of a logic value in a [[VHDL]] hardware description. The standardization effort was based on the donation of the [[Synopsys]] MVL-9 type declaration.


The primary data type std_ulogic (standard unresolved logic) consists of nine character literals in the following order<ref>{{cite web|title=|url=http://iroi.seu.edu.cn/books/asics/Book2/CH12/CH12.6.htm/|work=Wired|date=|accessdate=20010-01-22}}</ref>:
The primary data type std_ulogic (standard unresolved logic) consists of nine character literals in the following order<ref>{{cite web|title=VHDL and Logic Synthesis|url=http://iroi.seu.edu.cn/books/asics/Book2/CH12/CH12.htm|work=|publisher=|date=|accessdate=2010-01-22}}</ref>:


'U' - uninitialized
'U' - uninitialized

Revision as of 19:39, 22 January 2010

The IEEE Standard 1164 defines a package design unit that contains declarations that support a uniform representation of a logic value in a VHDL hardware description. The standardization effort was based on the donation of the Synopsys MVL-9 type declaration.

The primary data type std_ulogic (standard unresolved logic) consists of nine character literals in the following order[1]:

'U' - uninitialized

'X' - strong drive, unknown logic value

'0' - strong drive, logic zero

'1' - strong drive, logic one

'Z' - high impedance

'W' - weak drive, unknown logic value

'L' - weak drive, logic zero

'H' - weak drive, logic one

'-' - don't care

This system promoted a useful set of logic values that typical CMOS logic design could utilize in the vast majority of modeling situations. The 'Z' literal makes Tri-state buffer logic easy. The 'H' and 'L' weak drives permit wire-and and wire-or logic. Additionally, the 'U' state is the default value for all object declarations so that during simulations uninitialized values are easily detectable and thus easily corrected if necessary.

In VHDL, the hardware designer makes the declarations visible via the following library and use statements:

library IEEE;
use IEEE.std_logic_1164.all;

See also

References

  1. ^ "VHDL and Logic Synthesis". Retrieved 2010-01-22.