OpenCores
URL https://opencores.org/ocsvn/idea/idea/trunk

Subversion Repositories idea

[/] [idea/] [trunk/] [behavioral/] [key_regulator/] [kontrol_utama_invaddx.vbe] - Blame information for rev 10

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 6 marta
-- VHDL data flow description generated from `kontrol_utama_invaddx`
2
--              date : Sun Jul 29 23:45:16 2001
3
 
4
 
5
-- Entity Declaration
6
 
7
ENTITY kontrol_utama_invaddx IS
8
  PORT (
9
  clk : in BIT; -- clk
10
  rst : in BIT; -- rst
11
  start : in BIT;       -- start
12
  n_dtin : in bit_vector(4 DOWNTO 0) ;  -- n_dtin
13
  n_dtout : in bit_vector(4 DOWNTO 0) ; -- n_dtout
14
  c_cdtin : out BIT;    -- c_cdtin
15
  en_cdtin : out BIT;   -- en_cdtin
16
  c_cdtout : out BIT;   -- c_cdtout
17
  en_cdtout : out BIT;  -- en_cdtout
18
  en_out : out BIT;     -- en_out
19
  en_in : out BIT;      -- en_in
20
  finish : out BIT;     -- finish
21
  vdd : in BIT; -- vdd
22
  vss : in BIT  -- vss
23
  );
24
END kontrol_utama_invaddx;
25
 
26
 
27
-- Architecture Declaration
28
 
29
ARCHITECTURE VBE OF kontrol_utama_invaddx IS
30
  SIGNAL current_state : REG_VECTOR(2 DOWNTO 0) REGISTER;       -- current_state
31
  SIGNAL current_state_s4 : BIT;                -- current_state_s4
32
  SIGNAL next_state_s4 : BIT;           -- next_state_s4
33
  SIGNAL current_state_s3 : BIT;                -- current_state_s3
34
  SIGNAL next_state_s3 : BIT;           -- next_state_s3
35
  SIGNAL current_state_s2 : BIT;                -- current_state_s2
36
  SIGNAL next_state_s2 : BIT;           -- next_state_s2
37
  SIGNAL current_state_s1 : BIT;                -- current_state_s1
38
  SIGNAL next_state_s1 : BIT;           -- next_state_s1
39
  SIGNAL current_state_s0 : BIT;                -- current_state_s0
40
  SIGNAL next_state_s0 : BIT;           -- next_state_s0
41
  SIGNAL next_state : BIT_VECTOR(2 DOWNTO 0);   -- next_state
42
 
43
BEGIN
44
  next_state(0) <= (next_state_s1 OR next_state_s3);
45
  next_state(1) <= (next_state_s3 OR next_state_s4);
46
  next_state(2) <= (next_state_s0 OR next_state_s3);
47
  next_state_s0 <= (current_state_s0 AND NOT(start));
48
  current_state_s0 <= (current_state(2) AND NOT(current_state(1)));
49
  next_state_s1 <= (current_state_s0 AND (n_dtout(0) OR NOT(
50
n_dtout(1)) OR n_dtout(2) OR n_dtout(3) OR NOT(n_dtout(4)))
51
 AND NOT(n_dtin(0)) AND NOT(n_dtin(1)) AND NOT(
52
n_dtin(2)) AND NOT(n_dtin(3)) AND NOT(n_dtin(4)) AND start
53
);
54
  current_state_s1 <= (NOT(current_state(2)) AND current_state(0));
55
  next_state_s2 <= (current_state_s0 AND (n_dtout(0) OR NOT(
56
n_dtout(1)) OR n_dtout(2) OR n_dtout(3) OR NOT(n_dtout(4)))
57
 AND (n_dtin(0) OR n_dtin(1) OR n_dtin(2) OR
58
n_dtin(3) OR n_dtin(4)) AND start);
59
  current_state_s2 <= (NOT(current_state(2)) AND NOT(current_state(1))
60
AND NOT(current_state(0)));
61
  next_state_s3 <= (current_state_s1 OR current_state_s2 OR
62
current_state_s3);
63
  current_state_s3 <= (current_state(2) AND current_state(1));
64
  next_state_s4 <= ((current_state_s0 AND NOT(n_dtout(0)) AND
65
n_dtout(1) AND NOT(n_dtout(2)) AND NOT(n_dtout(3)) AND
66
n_dtout(4) AND start) OR current_state_s4);
67
  current_state_s4 <= (NOT(current_state(2)) AND current_state(1));
68
  label0 : BLOCK ((NOT((clk'STABLE)) AND NOT(clk)) = '1')
69
  BEGIN
70
    current_state(0) <= GUARDED (next_state(0) AND NOT(rst));
71
  END BLOCK label0;
72
  label1 : BLOCK ((NOT((clk'STABLE)) AND NOT(clk)) = '1')
73
  BEGIN
74
    current_state(1) <= GUARDED (next_state(1) AND NOT(rst));
75
  END BLOCK label1;
76
  label2 : BLOCK ((NOT((clk'STABLE)) AND NOT(clk)) = '1')
77
  BEGIN
78
    current_state(2) <= GUARDED (next_state(2) OR rst);
79
  END BLOCK label2;
80
 
81
finish <= ((current_state_s0 AND NOT(n_dtout(0)) AND
82
n_dtout(1) AND NOT(n_dtout(2)) AND NOT(n_dtout(3)) AND
83
n_dtout(4) AND NOT(rst) AND start) OR (current_state_s4 AND
84
 NOT(rst)));
85
 
86
en_in <= (current_state_s0 AND (n_dtout(0) OR NOT(
87
n_dtout(1)) OR n_dtout(2) OR n_dtout(3) OR NOT(n_dtout(4)))
88
 AND NOT(rst) AND start);
89
 
90
en_out <= NOT(rst OR (current_state_s0 AND NOT(rst)) OR (
91
current_state_s4 AND NOT(rst)));
92
 
93
en_cdtout <= NOT(rst OR (current_state_s0 AND ((NOT(rst) AND
94
NOT(start)) OR (((NOT(n_dtout(0)) AND n_dtout(1) AND
95
 NOT(n_dtout(2)) AND NOT(n_dtout(3)) AND
96
n_dtout(4)) OR n_dtin(0) OR n_dtin(1) OR n_dtin(2) OR
97
n_dtin(3) OR n_dtin(4)) AND NOT(rst)))) OR (
98
current_state_s4 AND NOT(rst)));
99
 
100
c_cdtout <= (current_state_s0 AND (n_dtout(0) OR NOT(
101
n_dtout(1)) OR n_dtout(2) OR n_dtout(3) OR NOT(n_dtout(4)))
102
 AND (n_dtin(0) OR n_dtin(1) OR n_dtin(2) OR
103
n_dtin(3) OR n_dtin(4)) AND NOT(rst) AND start);
104
 
105
en_cdtin <= NOT(rst OR (current_state_s0 AND ((NOT(rst) AND
106
NOT(start)) OR (((NOT(n_dtout(0)) AND n_dtout(1) AND
107
 NOT(n_dtout(2)) AND NOT(n_dtout(3)) AND
108
n_dtout(4)) OR n_dtin(0) OR n_dtin(1) OR n_dtin(2) OR
109
n_dtin(3) OR n_dtin(4)) AND NOT(rst)))) OR (
110
current_state_s4 AND NOT(rst)));
111
 
112
c_cdtin <= NOT(rst OR (current_state_s0 AND NOT(rst)) OR (
113
current_state_s4 AND NOT(rst)));
114
END;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.