Advertisement
Guest User

HTML Java script MYSQL programmers dev...(Elmo)

a guest
Jan 14th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ==Motivation==
  2. Due to the exploding complexity of digital electronic circuits since the 1970s (see [[Moore's law]]), circuit designers needed [[digital logic]] descriptions to be performed at a high level without being tied to a specific electronic technology, such as [[CMOS]] or [[BJT]]. HDLs were created to implement [[register-transfer level]] abstraction, a model of the data flow and timing of a circuit.<ref>{{cite book|last=Ciletti|first=Michael D.|title=Advanced Digital Design with Verilog HDL|publisher=Prentice Hall|year=2010}}</ref>
  3.  
  4. There are two major hardware description languages: [[VHDL]] and [[Verilog]]. There are different types of description in them
  5. "dataflow, behavioral and structural".
  6. Example of dataflow of VHDL:
  7.  
  8. <source lang="vhdl">
  9. LIBRARY IEEE;
  10. USE IEEE.STD_LOGIC_1164.ALL;
  11.  
  12. ENTITY not1 IS
  13.     PORT(
  14.         a : IN  STD_LOGIC;
  15.         b: OUT STD_LOGIC;
  16.     );
  17. END not1;
  18.  
  19. ARCHITECTURE behavioral OF not1 IS
  20. BEGIN
  21.     b <= NOT a;
  22. END behavioral;
  23. </source>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement