Last change
on this file since 228 was 215, checked in by dneise, 14 years ago |
initial commit (2nd part): only VHDL and UCF files were commited.
|
-
Property svn:executable
set to
*
|
File size:
676 bytes
|
Line | |
---|
1 | --
|
---|
2 | -- VHDL Architecture FACT_FAD_TB_lib.adc_controller.beha
|
---|
3 | --
|
---|
4 | -- Created:
|
---|
5 | -- by - Benjamin Krumm.UNKNOWN (EEPC8)
|
---|
6 | -- at - 13:46:10 25.03.2010
|
---|
7 | --
|
---|
8 | -- using Mentor Graphics HDL Designer(TM) 2009.1 (Build 12)
|
---|
9 | --
|
---|
10 | LIBRARY ieee;
|
---|
11 | USE ieee.std_logic_1164.all;
|
---|
12 | USE ieee.std_logic_arith.all;
|
---|
13 | USE IEEE.STD_LOGIC_UNSIGNED.ALL;
|
---|
14 |
|
---|
15 | ENTITY adc_controller IS
|
---|
16 | PORT(
|
---|
17 | adc_oeb : OUT STD_LOGIC
|
---|
18 | );
|
---|
19 |
|
---|
20 | -- Declarations
|
---|
21 |
|
---|
22 | END adc_controller ;
|
---|
23 |
|
---|
24 | ARCHITECTURE beha OF adc_controller IS
|
---|
25 | BEGIN
|
---|
26 |
|
---|
27 | start_adc_proc: process
|
---|
28 | begin
|
---|
29 | adc_oeb <= '1';
|
---|
30 | wait for 1 us;
|
---|
31 | wait for 10 ns;
|
---|
32 | adc_oeb <= '0';
|
---|
33 | wait;
|
---|
34 | end process start_adc_proc;
|
---|
35 |
|
---|
36 | END ARCHITECTURE beha;
|
---|
37 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.