Changes

Jump to navigation Jump to search
41 bytes added ,  15:48, 6 July 2007
no edit summary
Line 60: Line 60:  
Secondly are the libraries.  These are like the include statements in C/C++.  Honestly I forget which libraries have exactly what tools in them, but a standard block will cover mostly any design you work on:
 
Secondly are the libraries.  These are like the include statements in C/C++.  Honestly I forget which libraries have exactly what tools in them, but a standard block will cover mostly any design you work on:
   −
<code>
+
<pre>
 +
 
 +
-- Lines beginning with "--" are comments
 
-- This standard block will cover you for most designs.
 
-- This standard block will cover you for most designs.
 
-- Some development environments will auto-generate library "use" statements that may or may not include this set
 
-- Some development environments will auto-generate library "use" statements that may or may not include this set
Line 67: Line 69:  
use IEEE.STD_LOGIC_ARITH.ALL;
 
use IEEE.STD_LOGIC_ARITH.ALL;
 
use IEEE.STD_LOGIC_UNSIGNED.ALL;
 
use IEEE.STD_LOGIC_UNSIGNED.ALL;
</code>
+
</pre>
     
461

edits

Navigation menu