blob: f9463ebb3f725b9ed28140df1a445a348f086183 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
entity recordOfRecord_tb is
generic
( NB_CHAN_G : positive := 2
; W_ADR_G : positive := 11
; W_DAT_G : positive := 16
);
end recordOfRecord_tb;
architecture tb of recordOfRecord_tb is
type dmn_t is record
clk: std_ulogic;
rst: std_ulogic;
end record;
signal dmn_i_s : dmn_t;
signal stop_s : std_logic := '0';
type fifo_i_t is record
rx_cyc : std_ulogic;
rx_stb : std_ulogic;
rx_tga : std_ulogic_vector;
rx_cti : std_ulogic_vector( 1 downto 0 );
rx_dat : std_ulogic_vector;
tx_ack : std_ulogic;
tx_stall : std_ulogic;
end record;
type fifo_o_t is record
rx_ack : std_ulogic;
rx_stall : std_ulogic;
tx_cyc : std_ulogic;
tx_stb : std_ulogic;
tx_tga : std_ulogic_vector;
tx_cti : std_ulogic_vector( 1 downto 0 );
tx_dat : std_ulogic_vector;
end record;
type fifo_array_i_t is array ( natural range <> ) of fifo_i_t;
type fifo_array_o_t is array ( natural range <> ) of fifo_o_t;
signal arr_fifo_o
: fifo_array_o_t( 0 to NB_CHAN_G - 1 )
( tx_tga( W_ADR_G - 1 downto 0 )
, tx_dat( W_DAT_G - 1 downto 0 )
);
type reg_t is record
arr_fifo_i
: fifo_array_i_t( 0 to NB_CHAN_G - 1 )
( rx_tga( W_ADR_G - 1 downto 0 )
, rx_dat( W_DAT_G - 1 downto 0 )
);
end record;
signal a
, r
: reg_t;
begin
process
begin
dmn_i_s.clk <= '0';
wait for 5 ns;
dmn_i_s.clk <= '1';
wait for 5 ns;
if stop_s = '1' then
wait;
end if;
end process;
process
begin
dmn_i_s.rst <= '1';
wait for 50 ns;
dmn_i_s.rst <= '0';
wait;
end process;
process
begin
arr_fifo_o( 0 ).tx_cyc <= '0';
arr_fifo_o( 0 ).tx_cti <= "00";
wait until dmn_i_s.rst = '0';
wait until rising_edge( dmn_i_s.clk );
arr_fifo_o( 0 ).tx_cyc <= '1';
wait until rising_edge( dmn_i_s.clk );
wait until rising_edge( dmn_i_s.clk );
arr_fifo_o( 0 ).tx_cyc <= '0';
wait for 50 ns;
stop_s <= '1';
wait;
end process;
process( dmn_i_s.rst , r , arr_fifo_o )
variable a_v : reg_t;
begin
a_v := r;
if arr_fifo_o( 0 ).tx_cti = "00" then
if arr_fifo_o( 0 ).tx_cyc = '1' and r.arr_fifo_i( 0 ).tx_ack = '1' then
a_v.arr_fifo_i( 0 ).tx_ack := '0';
else
a_v.arr_fifo_i( 0 ).tx_ack := '1' and arr_fifo_o( 0 ).tx_cyc;
end if;
else
a_v.arr_fifo_i( 0 ).tx_ack := arr_fifo_o( 0 ).tx_cyc;
end if;
if dmn_i_s.rst = '1' then
a_v.arr_fifo_i( 0 ).tx_ack := '0';
end if;
a <= a_v;
end process;
process( dmn_i_s.clk )
begin
if rising_edge( dmn_i_s.clk ) then
r <= a;
end if;
end process;
-- notpad++ script
-- cd D:\vhdl
-- set cc=.\sim\ghdl\0.36-rc1-mingw32-mcode\bin\ghdl.exe
-- set sim_param= -PD:\vhdl\sim\ghdl\simSpace --workdir=D:\vhdl\sim\ghdl\simSpace --std=08
-- $(cc) -i $(sim_param) --work=ghdl_test .\ghdl_test\*.vhd
-- $(cc) -a $(sim_param) --work=ghdl_test .\ghdl_test\recordOfRecord_tb.vhd
-- $(cc) -m $(sim_param) --work=ghdl_test recordOfRecord_tb tb
-- $(cc) -r $(sim_param) --work=ghdl_test recordOfRecord_tb tb --wave=./sim/ghdl/simSpace/out/recordOfRecord_tb.ghw
end tb;
--#######################################################################################
--#######################################################################################
--#######################################################################################
--#######################################################################################
--#######################################################################################
|