1 |
122 |
dilbert57 |
--===========================================================================--
|
2 |
|
|
-- --
|
3 |
|
|
-- TESTBENCH testbench6 - CPU09 Testbench. --
|
4 |
|
|
-- --
|
5 |
|
|
--===========================================================================--
|
6 |
19 |
dilbert57 |
--
|
7 |
|
|
-- File name : Testbench6.vhd
|
8 |
|
|
--
|
9 |
|
|
-- Purpose : cpu09 Microprocessor Test Bench 6
|
10 |
|
|
-- Tests STS indexed
|
11 |
|
|
--
|
12 |
|
|
-- Dependencies : ieee.Std_Logic_1164
|
13 |
|
|
-- ieee.std_logic_unsigned
|
14 |
|
|
-- ieee.std_logic_arith
|
15 |
|
|
-- ieee.numeric_std
|
16 |
|
|
--
|
17 |
122 |
dilbert57 |
-- Uses : cpu09 (..\VHDL\cpu09.vhd) CPU core
|
18 |
19 |
dilbert57 |
--
|
19 |
|
|
-- Author : John E. Kent
|
20 |
|
|
-- dilbert57@opencores.org
|
21 |
122 |
dilbert57 |
--
|
22 |
|
|
-- Copyright (C) 2003 - 2011 John Kent
|
23 |
|
|
--
|
24 |
|
|
-- This program is free software: you can redistribute it and/or modify
|
25 |
|
|
-- it under the terms of the GNU General Public License as published by
|
26 |
|
|
-- the Free Software Foundation, either version 3 of the License, or
|
27 |
|
|
-- (at your option) any later version.
|
28 |
|
|
--
|
29 |
|
|
-- This program is distributed in the hope that it will be useful,
|
30 |
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
31 |
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
32 |
|
|
-- GNU General Public License for more details.
|
33 |
|
|
--
|
34 |
|
|
-- You should have received a copy of the GNU General Public License
|
35 |
|
|
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
36 |
|
|
--
|
37 |
|
|
--===========================================================================--
|
38 |
|
|
-- --
|
39 |
|
|
-- Revision History --
|
40 |
|
|
-- --
|
41 |
|
|
--===========================================================================--
|
42 |
19 |
dilbert57 |
--
|
43 |
122 |
dilbert57 |
-- Rev Date Author Changes
|
44 |
|
|
-- 0.1 2003-04-12 John Kent First version
|
45 |
|
|
-- 1.0 2003-09-06 John Kent Initial release to Opencores.org
|
46 |
|
|
-- 1.1 2004-02-25 John kent removed test_alu and test_cc signals from CPU component.
|
47 |
|
|
-- 1.2 2011-10-09 John Kent renamed address to addr on CPU component, updated header
|
48 |
19 |
dilbert57 |
--
|
49 |
|
|
--===========================================================================--
|
50 |
|
|
|
51 |
|
|
library ieee;
|
52 |
|
|
use ieee.std_logic_1164.all;
|
53 |
|
|
use IEEE.STD_LOGIC_ARITH.ALL;
|
54 |
|
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
55 |
|
|
use ieee.numeric_std.all;
|
56 |
|
|
|
57 |
|
|
entity my_testbench6 is
|
58 |
|
|
end my_testbench6;
|
59 |
|
|
|
60 |
|
|
-------------------------------------------------------------------------------
|
61 |
|
|
-- Architecture for memio Controller Unit
|
62 |
|
|
-------------------------------------------------------------------------------
|
63 |
|
|
architecture behavior of my_testbench6 is
|
64 |
|
|
-----------------------------------------------------------------------------
|
65 |
|
|
-- Signals
|
66 |
|
|
-----------------------------------------------------------------------------
|
67 |
|
|
signal cpu_irq : std_Logic;
|
68 |
|
|
signal cpu_firq : std_logic;
|
69 |
|
|
signal cpu_nmi : std_logic;
|
70 |
|
|
|
71 |
|
|
-- CPU Interface signals
|
72 |
|
|
signal SysClk : Std_Logic;
|
73 |
|
|
signal cpu_reset : Std_Logic;
|
74 |
|
|
signal cpu_rw : Std_Logic;
|
75 |
|
|
signal cpu_vma : Std_Logic;
|
76 |
|
|
signal cpu_addr : Std_Logic_Vector(15 downto 0);
|
77 |
|
|
signal cpu_data_in : Std_Logic_Vector(7 downto 0);
|
78 |
|
|
signal cpu_data_out: Std_Logic_Vector(7 downto 0);
|
79 |
|
|
|
80 |
|
|
constant width : integer := 8;
|
81 |
|
|
constant memsize : integer := 64;
|
82 |
|
|
|
83 |
|
|
type rom_array is array(0 to memsize-1) of std_logic_vector(width-1 downto 0);
|
84 |
|
|
|
85 |
|
|
constant rom_data : rom_array :=
|
86 |
|
|
(
|
87 |
|
|
x"10",x"CE", x"F8", x"30", -- F800 - 10CE F830 RET1 LDS #STACK
|
88 |
|
|
x"CE",x"B0",x"00", -- F804 - CE B000 LDU #$B000
|
89 |
|
|
x"10",x"EF",x"C8",x"00", -- F807 - 10EF C800 STS $00,U
|
90 |
|
|
x"12",x"12",x"12", -- F80B - 12 12 12
|
91 |
|
|
"00110011", -- F8OE - 33 FCB $33 ; ACCB
|
92 |
|
|
"00110100", -- F8OF - 34 FCB $34 ; DPR
|
93 |
|
|
"00110101", "00110110", -- F810 - 3536 FDB $3536 ; IX
|
94 |
|
|
"00110111", "00111000", -- F812 - 3738 FDB $3738 ; IY
|
95 |
|
|
"00111001", "00111010", -- F814 - 393A FDB $393A ; UP
|
96 |
|
|
"11111000", "00001001", -- F816 - F809 FDB SWI3VEC ; PC
|
97 |
|
|
"10100001", -- F818 - A1 STACK2 FCB $A1 ; CC
|
98 |
|
|
"00100010", -- F819 - 22 FCB $22 ; ACCA
|
99 |
|
|
"00100011", -- F81A - 23 FCB $23 ; ACCB
|
100 |
|
|
"00100100", -- F81B - 24 FCB $24 ; DPR
|
101 |
|
|
"00100101", "00100110", -- F81C - 2526 FDB $2526 ; IX
|
102 |
|
|
"00100111", "00101000", -- F81E - 2728 FDB $2728 ; IY
|
103 |
|
|
"00101001", "00101010", -- F820 - 292A FDB $292A ; UP
|
104 |
|
|
"11111000", "00001001", -- F822 - F809 FDB SWI3VEC ; PC
|
105 |
|
|
"10010001", -- F824 - 91 STACK1 FCB $91 ; CC
|
106 |
|
|
"00010010", -- F825 - 12 FCB $12 ; ACCA
|
107 |
|
|
"00010011", -- F826 - 13 FCB $13 ; ACCB
|
108 |
|
|
"00010100", -- F827 - 14 FCB $14 ; DPR
|
109 |
|
|
"00010101", "00010110", -- F828 - 1516 FDB $1516 ; IX
|
110 |
|
|
"00010111", "00011000", -- F82A - 1718 FDB $1718 ; IY
|
111 |
|
|
"00011001", "00011010", -- F82C - 191A FDB $191A ; UP
|
112 |
|
|
"11111000", "00000000", -- F82E - F800 FDB RESET ; PC
|
113 |
|
|
-- F830 STACK EQU *
|
114 |
|
|
--
|
115 |
|
|
-- Interrupt Cectors Start Here
|
116 |
|
|
--
|
117 |
|
|
"11111000", "00000000", -- F830 - F800 FDB RESET ; RESV
|
118 |
|
|
"11111000", "00001001", -- F832 - F809 FDB SWIVEC3 ; SWI3
|
119 |
|
|
"11111000", "00000111", -- F834 - F807 FDB SWIVEC2 ; SWI2
|
120 |
|
|
"11111000", "00000000", -- F836 - F800 fdb RESET ; FIRQ
|
121 |
|
|
"11111000", "00000000", -- F838 - F800 fdb RESET ; IRQ
|
122 |
|
|
"11111000", "00000101", -- F83A - F805 fdb SWIVEC ; SWI
|
123 |
|
|
"11111000", "00000000", -- F83C - F800 fcb RESET ; NMI
|
124 |
|
|
"11111000", "00000000" -- F83E - F800 fdb RESET ; Reset
|
125 |
|
|
);
|
126 |
|
|
|
127 |
|
|
component cpu09
|
128 |
|
|
port (
|
129 |
|
|
clk: in std_logic;
|
130 |
|
|
rst: in std_logic;
|
131 |
|
|
rw: out std_logic; -- Asynchronous memory interface
|
132 |
|
|
vma: out std_logic;
|
133 |
122 |
dilbert57 |
addr: out std_logic_vector(15 downto 0);
|
134 |
19 |
dilbert57 |
data_in: in std_logic_vector(7 downto 0);
|
135 |
|
|
data_out: out std_logic_vector(7 downto 0);
|
136 |
|
|
halt: in std_logic;
|
137 |
|
|
hold: in std_logic;
|
138 |
|
|
irq: in std_logic;
|
139 |
|
|
nmi: in std_logic;
|
140 |
|
|
firq: in std_logic
|
141 |
|
|
);
|
142 |
|
|
end component cpu09;
|
143 |
|
|
|
144 |
|
|
|
145 |
|
|
begin
|
146 |
|
|
cpu : cpu09 port map (
|
147 |
|
|
clk => SysClk,
|
148 |
|
|
rst => cpu_reset,
|
149 |
|
|
rw => cpu_rw,
|
150 |
|
|
vma => cpu_vma,
|
151 |
122 |
dilbert57 |
addr => cpu_addr(15 downto 0),
|
152 |
19 |
dilbert57 |
data_in => cpu_data_in,
|
153 |
|
|
data_out => cpu_data_out,
|
154 |
|
|
halt => '0',
|
155 |
|
|
hold => '0',
|
156 |
|
|
irq => cpu_irq,
|
157 |
|
|
nmi => cpu_nmi,
|
158 |
|
|
firq => cpu_firq
|
159 |
|
|
);
|
160 |
|
|
|
161 |
|
|
-- *** Test Bench - User Defined Section ***
|
162 |
|
|
tb : PROCESS
|
163 |
|
|
variable count : integer;
|
164 |
|
|
BEGIN
|
165 |
|
|
|
166 |
|
|
cpu_reset <= '0';
|
167 |
|
|
SysClk <= '0';
|
168 |
|
|
cpu_irq <= '0';
|
169 |
|
|
cpu_nmi <= '0';
|
170 |
|
|
cpu_firq <= '0';
|
171 |
|
|
|
172 |
|
|
for count in 0 to 512 loop
|
173 |
|
|
SysClk <= '0';
|
174 |
|
|
if count = 0 then
|
175 |
|
|
cpu_reset <= '1';
|
176 |
|
|
elsif count = 1 then
|
177 |
|
|
cpu_reset <= '0';
|
178 |
|
|
end if;
|
179 |
|
|
wait for 100 ns;
|
180 |
|
|
SysClk <= '1';
|
181 |
|
|
wait for 100 ns;
|
182 |
|
|
end loop;
|
183 |
|
|
|
184 |
|
|
wait; -- will wait forever
|
185 |
|
|
END PROCESS;
|
186 |
|
|
-- *** End Test Bench - User Defined Section ***
|
187 |
|
|
|
188 |
|
|
|
189 |
|
|
rom : PROCESS( cpu_addr )
|
190 |
|
|
begin
|
191 |
|
|
cpu_data_in <= rom_data(conv_integer(cpu_addr(5 downto 0)));
|
192 |
|
|
end process;
|
193 |
|
|
|
194 |
|
|
end behavior; --===================== End of architecture =======================--
|
195 |
|
|
|