VHDL:Programmeringstips

From Robin

(Difference between revisions)
Jump to: navigation, search
(New page: = VHDL Programmerings-tips = TableOfContents == Hvordan teste om alle bit i en std_logic_vector = '1' == {{{ if A = (A'range => '1') then ... else ... end if; }}} == Hvordan s...)
Line 1: Line 1:
-
= VHDL Programmerings-tips =
+
= VHDL Programmeringstips =
-
 
+
-
[[TableOfContents]]
+
== Hvordan teste om alle bit i en std_logic_vector = '1' ==
== Hvordan teste om alle bit i en std_logic_vector = '1' ==

Revision as of 18:17, 7 March 2007

Contents

VHDL Programmeringstips

Hvordan teste om alle bit i en std_logic_vector = '1'

{{{ if A = (A'range => '1') then

  ...

else

  ...

end if; }}}

Hvordan sette alle bit i en std_logic_vector like

{{{ A <= (others => '1');

A_2D <= (others=>(others => '1')); --hvis todimensjonalt array }}}

Hvordan vente på en verdi som skal være stabil en periode

{{{ wait until (CLK='1' and CLK'stable(2 ns)); }}}

Personal tools
Front page