IEEE 1164

From Wikipedia, the free encyclopedia

Character literals[1]
Character Value
'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

The IEEE 1164 standard (Multivalue Logic System for VHDL Model Interoperability) is a technical standard published by the IEEE in 1993. It describes the definitions of logic values to be used in electronic design automation, for the VHDL hardware description language.[2] It was sponsored by the Design Automation Standards Committee of the Institute of Electrical and Electronics Engineers (IEEE). 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 (see table on the right).[1] This system promoted a useful set of logic values that typical CMOS logic designs could implement in the vast majority of modeling situations, including:

  • 'Z' literal to make tri-state buffer logic easy
  • 'H' and 'L' weak drives to permit wired-AND and wired-OR logic.
  • 'U' for 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;

Using values in simulation[edit]

Use of 'U'[edit]

Many hardware description language (HDL) simulation tools, such as Verilog and VHDL, support an unknown value like that shown above during simulation of digital electronics. The unknown value may be the result of a design error, which the designer can correct before synthesis into an actual circuit. The unknown also represents uninitialised memory values and circuit inputs before the simulation has asserted what the real input value should be.

HDL synthesis tools usually produce circuits that operate only on binary logic.

Use of '-'[edit]

When designing a digital circuit, some conditions may be outside the scope of the purpose that the circuit will perform. Thus, the designer does not care what happens under those conditions. In addition, the situation occurs that inputs to a circuit are masked by other signals so the value of that input has no effect on circuit behaviour.

In these situations, it is traditional to use 'X' as a placeholder to indicate "Don't Care" when building truth tables, but VHDL uses -. "Don't care"s are especially common in state machine design and Karnaugh map simplification. The '-' values provide additional degrees of freedom to the final circuit design, generally resulting in a simplified and smaller circuit.[3]

Once the circuit design is complete and a real circuit is constructed, the '-' values will no longer exist. They will become some tangible '0' or '1' value but could be either depending on the final design optimization.

Use of 'Z'[edit]

Some digital devices support a form of three-state logic on their outputs only. The three states are "0", "1", and "Z".

Commonly referred to as tristate[4] logic (a trademark of National Semiconductor), it comprises the usual true and false states, with a third transparent high impedance state (or 'off-state') which effectively disconnects the logic output. This provides an effective way to connect several logic outputs to a single input, where all but one are put into the high impedance state, allowing the remaining output to operate in the normal binary sense. This is commonly used to connect banks of computer memory and other similar devices to a common data bus; a large number of devices can communicate over the same channel simply by ensuring only one is enabled at a time.

While outputs can have one of three states, inputs can only recognise two. Although it could be argued that the high-impedance state is effectively an "unknown", there is no provision in most electronics to interpret a high-impedance state as a state in itself. Inputs can only detect "0" and "1".

When a digital input is left disconnected, the digital value interpreted by the input depends on the type of technology used. TTL technology will reliably default to a "1" state. On the other hand, CMOS technology will temporarily hold the previous state seen on that input (due to the capacitance of the gate input). Over time, leakage current causes the CMOS input to drift in a random direction, possibly causing the input state to flip. Disconnected inputs on CMOS devices can pick up noise, they can cause oscillation, the supply current may dramatically increase (crowbar power) or the device may completely destroy itself.

See also[edit]

References[edit]

  1. ^ a b "VHDL and Logic Synthesis". Retrieved 22 January 2010.
  2. ^ "IEEE 1164-1993 – IEEE Standard Multivalue Logic System for VHDL Model Interoperability (Std_logic_1164)". standards.ieee.org. Retrieved 25 September 2018.
  3. ^ Wakerly, John F (2001). Digital Design Principles & Practices. Prentice Hall. ISBN 0-13-090772-3.
  4. ^ National Semiconductor (1993), LS TTL Data Book, National Semiconductor Corporation, archived from the original on 9 February 2006, retrieved 19 January 2020
  • 1164-1993 – IEEE Standard Multivalue Logic System for VHDL Model Interoperability (Stdlogic1164). 1993. doi:10.1109/IEEESTD.1993.115571. ISBN 0-7381-0991-6.
  • D. Michael Miller; Mitchell A. Thornton (2008). Multiple valued logic: concepts and representations. Synthesis lectures on digital circuits and systems. Vol. 12. Morgan & Claypool Publishers. ISBN 978-1-59829-190-2.