VHDL programming: Difference between revisions

From CLONWiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 4: Line 4:


1. Includes, for example:
1. Includes, for example:
library ieee;
use IEEE.Std_Logic_1164.all;
use IEEE.Std_Logic_arith.all;
use IEEE.Std_Logic_unsigned.all;
2.

Revision as of 08:36, 7 August 2011

Basic rules for V1595-based CLAS triggers

In general VHDL files contains following sections:

1. Includes, for example:

library ieee;
use IEEE.Std_Logic_1164.all;
use IEEE.Std_Logic_arith.all;
use IEEE.Std_Logic_unsigned.all;

2.