1 |
d93979b7
|
Arnaud Dieumegard
|
|
2 |
|
|
-- Copyright (C) 1996 Morgan Kaufmann Publishers, Inc
|
3 |
|
|
|
4 |
|
|
-- This file is part of VESTs (Vhdl tESTs).
|
5 |
|
|
|
6 |
|
|
-- VESTs is free software; you can redistribute it and/or modify it
|
7 |
|
|
-- under the terms of the GNU General Public License as published by the
|
8 |
|
|
-- Free Software Foundation; either version 2 of the License, or (at
|
9 |
|
|
-- your option) any later version.
|
10 |
|
|
|
11 |
|
|
-- VESTs is distributed in the hope that it will be useful, but WITHOUT
|
12 |
|
|
-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
13 |
|
|
-- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
14 |
|
|
-- for more details.
|
15 |
|
|
|
16 |
|
|
-- You should have received a copy of the GNU General Public License
|
17 |
|
|
-- along with VESTs; if not, write to the Free Software Foundation,
|
18 |
|
|
-- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19 |
|
|
|
20 |
|
|
-- ---------------------------------------------------------------------
|
21 |
|
|
--
|
22 |
|
|
-- $Id: ch_20_ch_20_03.vhd,v 1.2 2001-10-26 16:29:36 paw Exp $
|
23 |
|
|
-- $Revision: 1.2 $
|
24 |
|
|
--
|
25 |
|
|
-- ---------------------------------------------------------------------
|
26 |
|
|
|
27 |
|
|
package ch_20_03_a is
|
28 |
|
|
|
29 |
|
|
-- code from book:
|
30 |
|
|
|
31 |
|
|
attribute cell_name : string;
|
32 |
|
|
attribute pin_number : positive;
|
33 |
|
|
attribute max_wire_delay : delay_length;
|
34 |
|
|
attribute encoding : bit_vector;
|
35 |
|
|
|
36 |
|
|
|
37 |
|
|
type length is range 0 to integer'high
|
38 |
|
|
units nm;
|
39 |
|
|
um = 1000 nm;
|
40 |
|
|
mm = 1000 um;
|
41 |
|
|
mil = 25400 nm;
|
42 |
|
|
end units length;
|
43 |
|
|
|
44 |
|
|
type coordinate is record
|
45 |
|
|
x, y : length;
|
46 |
|
|
end record coordinate;
|
47 |
|
|
|
48 |
|
|
attribute cell_position : coordinate;
|
49 |
|
|
|
50 |
|
|
-- end of code from book
|
51 |
|
|
|
52 |
|
|
end package ch_20_03_a;
|
53 |
|
|
|
54 |
|
|
|
55 |
|
|
|
56 |
|
|
|
57 |
|
|
entity ch_20_03 is
|
58 |
|
|
|
59 |
|
|
end entity ch_20_03;
|
60 |
|
|
|
61 |
|
|
|
62 |
|
|
----------------------------------------------------------------
|
63 |
|
|
|
64 |
|
|
|
65 |
|
|
architecture std_cell of ch_20_03 is
|
66 |
|
|
|
67 |
|
|
use work.ch_20_03_a.all;
|
68 |
|
|
|
69 |
|
|
signal enable, clk : bit;
|
70 |
|
|
|
71 |
|
|
type state_type is (idle_state, other_state);
|
72 |
|
|
|
73 |
|
|
-- code from book:
|
74 |
|
|
|
75 |
|
|
attribute cell_name of std_cell : architecture is "DFF_SR_QQNN";
|
76 |
|
|
attribute pin_number of enable : signal is 14;
|
77 |
|
|
attribute max_wire_delay of clk : signal is 50 ps;
|
78 |
|
|
attribute encoding of idle_state : literal is b"0000";
|
79 |
|
|
attribute cell_position of the_fpu : label is ( 540 um, 1200 um );
|
80 |
|
|
|
81 |
|
|
-- end of code from book
|
82 |
|
|
|
83 |
|
|
begin
|
84 |
|
|
|
85 |
|
|
the_fpu : block is
|
86 |
|
|
begin
|
87 |
|
|
end block the_fpu;
|
88 |
|
|
|
89 |
|
|
process is
|
90 |
|
|
use std.textio.all;
|
91 |
|
|
variable L : line;
|
92 |
|
|
begin
|
93 |
|
|
write(L, std_cell'cell_name);
|
94 |
|
|
writeline(output, L);
|
95 |
|
|
write(L, enable'pin_number);
|
96 |
|
|
writeline(output, L);
|
97 |
|
|
write(L, clk'max_wire_delay);
|
98 |
|
|
writeline(output, L);
|
99 |
|
|
write(L, idle_state[return state_type]'encoding);
|
100 |
|
|
writeline(output, L);
|
101 |
|
|
write(L, length'image(the_fpu'cell_position.x));
|
102 |
|
|
write(L, ' ');
|
103 |
|
|
write(L, length'image(the_fpu'cell_position.y));
|
104 |
|
|
writeline(output, L);
|
105 |
|
|
|
106 |
|
|
wait;
|
107 |
|
|
end process;
|
108 |
|
|
|
109 |
|
|
end architecture std_cell;
|