--===========================================================================----
|
--===========================================================================----
|
--
|
--
|
-- T E S T B E N C H tesetbench3 - CPU09 Testbench.
|
-- T E S T B E N C H tesetbench3 - CPU09 Testbench.
|
--
|
--
|
-- www.OpenCores.Org - September 2003
|
-- www.OpenCores.Org - September 2003
|
-- This core adheres to the GNU public license
|
-- This core adheres to the GNU public license
|
--
|
--
|
-- File name : Testbench6.vhd
|
-- File name : Testbench6.vhd
|
--
|
--
|
-- Purpose : cpu09 Microprocessor Test Bench 6
|
-- Purpose : cpu09 Microprocessor Test Bench 6
|
-- Tests STS indexed
|
-- Tests STS indexed
|
--
|
--
|
-- Dependencies : ieee.Std_Logic_1164
|
-- Dependencies : ieee.Std_Logic_1164
|
-- ieee.std_logic_unsigned
|
-- ieee.std_logic_unsigned
|
-- ieee.std_logic_arith
|
-- ieee.std_logic_arith
|
-- ieee.numeric_std
|
-- ieee.numeric_std
|
--
|
--
|
-- Uses : cpu09 (cpu09.vhd) CPU core
|
-- Uses : cpu09 (cpu09.vhd) CPU core
|
--
|
--
|
-- Author : John E. Kent
|
-- Author : John E. Kent
|
-- dilbert57@opencores.org
|
-- dilbert57@opencores.org
|
--
|
--
|
--===========================================================================----
|
--===========================================================================----
|
--
|
--
|
-- Revision History:
|
-- Revision History:
|
--===========================================================================--
|
--===========================================================================--
|
--
|
--
|
-- Version 0.1 - 12st April 2003 - John Kent
|
-- Version 0.1 - 12st April 2003 - John Kent
|
-- First version
|
-- First version
|
--
|
--
|
-- Version 1.0 - 6 Sep 2003 - John Kent
|
-- Version 1.0 - 6 Sep 2003 - John Kent
|
-- Initial release to Open Cores
|
-- Initial release to Open Cores
|
--
|
--
|
-- Version 1.1 - 25th Jan 2004 - John Kent
|
-- Version 1.1 - 25th Jan 2004 - John Kent
|
-- removed "test_alu" and "test_cc"
|
-- removed "test_alu" and "test_cc"
|
--
|
--
|
--===========================================================================--
|
--===========================================================================--
|
|
|
library ieee;
|
library ieee;
|
use ieee.std_logic_1164.all;
|
use ieee.std_logic_1164.all;
|
use IEEE.STD_LOGIC_ARITH.ALL;
|
use IEEE.STD_LOGIC_ARITH.ALL;
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
use ieee.numeric_std.all;
|
use ieee.numeric_std.all;
|
|
|
entity my_testbench6 is
|
entity my_testbench6 is
|
end my_testbench6;
|
end my_testbench6;
|
|
|
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
-- Architecture for memio Controller Unit
|
-- Architecture for memio Controller Unit
|
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
architecture behavior of my_testbench6 is
|
architecture behavior of my_testbench6 is
|
-----------------------------------------------------------------------------
|
-----------------------------------------------------------------------------
|
-- Signals
|
-- Signals
|
-----------------------------------------------------------------------------
|
-----------------------------------------------------------------------------
|
signal cpu_irq : std_Logic;
|
signal cpu_irq : std_Logic;
|
signal cpu_firq : std_logic;
|
signal cpu_firq : std_logic;
|
signal cpu_nmi : std_logic;
|
signal cpu_nmi : std_logic;
|
|
|
-- CPU Interface signals
|
-- CPU Interface signals
|
signal SysClk : Std_Logic;
|
signal SysClk : Std_Logic;
|
signal cpu_reset : Std_Logic;
|
signal cpu_reset : Std_Logic;
|
signal cpu_rw : Std_Logic;
|
signal cpu_rw : Std_Logic;
|
signal cpu_vma : Std_Logic;
|
signal cpu_vma : Std_Logic;
|
signal cpu_addr : Std_Logic_Vector(15 downto 0);
|
signal cpu_addr : Std_Logic_Vector(15 downto 0);
|
signal cpu_data_in : Std_Logic_Vector(7 downto 0);
|
signal cpu_data_in : Std_Logic_Vector(7 downto 0);
|
signal cpu_data_out: Std_Logic_Vector(7 downto 0);
|
signal cpu_data_out: Std_Logic_Vector(7 downto 0);
|
|
|
constant width : integer := 8;
|
constant width : integer := 8;
|
constant memsize : integer := 64;
|
constant memsize : integer := 64;
|
|
|
type rom_array is array(0 to memsize-1) of std_logic_vector(width-1 downto 0);
|
type rom_array is array(0 to memsize-1) of std_logic_vector(width-1 downto 0);
|
|
|
constant rom_data : rom_array :=
|
constant rom_data : rom_array :=
|
(
|
(
|
x"10",x"CE", x"F8", x"30", -- F800 - 10CE F830 RET1 LDS #STACK
|
x"10",x"CE", x"F8", x"30", -- F800 - 10CE F830 RET1 LDS #STACK
|
x"CE",x"B0",x"00", -- F804 - CE B000 LDU #$B000
|
x"CE",x"B0",x"00", -- F804 - CE B000 LDU #$B000
|
x"10",x"EF",x"C8",x"00", -- F807 - 10EF C800 STS $00,U
|
x"10",x"EF",x"C8",x"00", -- F807 - 10EF C800 STS $00,U
|
x"12",x"12",x"12", -- F80B - 12 12 12
|
x"12",x"12",x"12", -- F80B - 12 12 12
|
"00110011", -- F8OE - 33 FCB $33 ; ACCB
|
"00110011", -- F8OE - 33 FCB $33 ; ACCB
|
"00110100", -- F8OF - 34 FCB $34 ; DPR
|
"00110100", -- F8OF - 34 FCB $34 ; DPR
|
"00110101", "00110110", -- F810 - 3536 FDB $3536 ; IX
|
"00110101", "00110110", -- F810 - 3536 FDB $3536 ; IX
|
"00110111", "00111000", -- F812 - 3738 FDB $3738 ; IY
|
"00110111", "00111000", -- F812 - 3738 FDB $3738 ; IY
|
"00111001", "00111010", -- F814 - 393A FDB $393A ; UP
|
"00111001", "00111010", -- F814 - 393A FDB $393A ; UP
|
"11111000", "00001001", -- F816 - F809 FDB SWI3VEC ; PC
|
"11111000", "00001001", -- F816 - F809 FDB SWI3VEC ; PC
|
"10100001", -- F818 - A1 STACK2 FCB $A1 ; CC
|
"10100001", -- F818 - A1 STACK2 FCB $A1 ; CC
|
"00100010", -- F819 - 22 FCB $22 ; ACCA
|
"00100010", -- F819 - 22 FCB $22 ; ACCA
|
"00100011", -- F81A - 23 FCB $23 ; ACCB
|
"00100011", -- F81A - 23 FCB $23 ; ACCB
|
"00100100", -- F81B - 24 FCB $24 ; DPR
|
"00100100", -- F81B - 24 FCB $24 ; DPR
|
"00100101", "00100110", -- F81C - 2526 FDB $2526 ; IX
|
"00100101", "00100110", -- F81C - 2526 FDB $2526 ; IX
|
"00100111", "00101000", -- F81E - 2728 FDB $2728 ; IY
|
"00100111", "00101000", -- F81E - 2728 FDB $2728 ; IY
|
"00101001", "00101010", -- F820 - 292A FDB $292A ; UP
|
"00101001", "00101010", -- F820 - 292A FDB $292A ; UP
|
"11111000", "00001001", -- F822 - F809 FDB SWI3VEC ; PC
|
"11111000", "00001001", -- F822 - F809 FDB SWI3VEC ; PC
|
"10010001", -- F824 - 91 STACK1 FCB $91 ; CC
|
"10010001", -- F824 - 91 STACK1 FCB $91 ; CC
|
"00010010", -- F825 - 12 FCB $12 ; ACCA
|
"00010010", -- F825 - 12 FCB $12 ; ACCA
|
"00010011", -- F826 - 13 FCB $13 ; ACCB
|
"00010011", -- F826 - 13 FCB $13 ; ACCB
|
"00010100", -- F827 - 14 FCB $14 ; DPR
|
"00010100", -- F827 - 14 FCB $14 ; DPR
|
"00010101", "00010110", -- F828 - 1516 FDB $1516 ; IX
|
"00010101", "00010110", -- F828 - 1516 FDB $1516 ; IX
|
"00010111", "00011000", -- F82A - 1718 FDB $1718 ; IY
|
"00010111", "00011000", -- F82A - 1718 FDB $1718 ; IY
|
"00011001", "00011010", -- F82C - 191A FDB $191A ; UP
|
"00011001", "00011010", -- F82C - 191A FDB $191A ; UP
|
"11111000", "00000000", -- F82E - F800 FDB RESET ; PC
|
"11111000", "00000000", -- F82E - F800 FDB RESET ; PC
|
-- F830 STACK EQU *
|
-- F830 STACK EQU *
|
--
|
--
|
-- Interrupt Cectors Start Here
|
-- Interrupt Cectors Start Here
|
--
|
--
|
"11111000", "00000000", -- F830 - F800 FDB RESET ; RESV
|
"11111000", "00000000", -- F830 - F800 FDB RESET ; RESV
|
"11111000", "00001001", -- F832 - F809 FDB SWIVEC3 ; SWI3
|
"11111000", "00001001", -- F832 - F809 FDB SWIVEC3 ; SWI3
|
"11111000", "00000111", -- F834 - F807 FDB SWIVEC2 ; SWI2
|
"11111000", "00000111", -- F834 - F807 FDB SWIVEC2 ; SWI2
|
"11111000", "00000000", -- F836 - F800 fdb RESET ; FIRQ
|
"11111000", "00000000", -- F836 - F800 fdb RESET ; FIRQ
|
"11111000", "00000000", -- F838 - F800 fdb RESET ; IRQ
|
"11111000", "00000000", -- F838 - F800 fdb RESET ; IRQ
|
"11111000", "00000101", -- F83A - F805 fdb SWIVEC ; SWI
|
"11111000", "00000101", -- F83A - F805 fdb SWIVEC ; SWI
|
"11111000", "00000000", -- F83C - F800 fcb RESET ; NMI
|
"11111000", "00000000", -- F83C - F800 fcb RESET ; NMI
|
"11111000", "00000000" -- F83E - F800 fdb RESET ; Reset
|
"11111000", "00000000" -- F83E - F800 fdb RESET ; Reset
|
);
|
);
|
|
|
component cpu09
|
component cpu09
|
port (
|
port (
|
clk: in std_logic;
|
clk: in std_logic;
|
rst: in std_logic;
|
rst: in std_logic;
|
rw: out std_logic; -- Asynchronous memory interface
|
rw: out std_logic; -- Asynchronous memory interface
|
vma: out std_logic;
|
vma: out std_logic;
|
address: out std_logic_vector(15 downto 0);
|
address: out std_logic_vector(15 downto 0);
|
data_in: in std_logic_vector(7 downto 0);
|
data_in: in std_logic_vector(7 downto 0);
|
data_out: out std_logic_vector(7 downto 0);
|
data_out: out std_logic_vector(7 downto 0);
|
halt: in std_logic;
|
halt: in std_logic;
|
hold: in std_logic;
|
hold: in std_logic;
|
irq: in std_logic;
|
irq: in std_logic;
|
nmi: in std_logic;
|
nmi: in std_logic;
|
firq: in std_logic
|
firq: in std_logic
|
);
|
);
|
end component cpu09;
|
end component cpu09;
|
|
|
|
|
begin
|
begin
|
cpu : cpu09 port map (
|
cpu : cpu09 port map (
|
clk => SysClk,
|
clk => SysClk,
|
rst => cpu_reset,
|
rst => cpu_reset,
|
rw => cpu_rw,
|
rw => cpu_rw,
|
vma => cpu_vma,
|
vma => cpu_vma,
|
address => cpu_addr(15 downto 0),
|
address => cpu_addr(15 downto 0),
|
data_in => cpu_data_in,
|
data_in => cpu_data_in,
|
data_out => cpu_data_out,
|
data_out => cpu_data_out,
|
halt => '0',
|
halt => '0',
|
hold => '0',
|
hold => '0',
|
irq => cpu_irq,
|
irq => cpu_irq,
|
nmi => cpu_nmi,
|
nmi => cpu_nmi,
|
firq => cpu_firq
|
firq => cpu_firq
|
);
|
);
|
|
|
-- *** Test Bench - User Defined Section ***
|
-- *** Test Bench - User Defined Section ***
|
tb : PROCESS
|
tb : PROCESS
|
variable count : integer;
|
variable count : integer;
|
BEGIN
|
BEGIN
|
|
|
cpu_reset <= '0';
|
cpu_reset <= '0';
|
SysClk <= '0';
|
SysClk <= '0';
|
cpu_irq <= '0';
|
cpu_irq <= '0';
|
cpu_nmi <= '0';
|
cpu_nmi <= '0';
|
cpu_firq <= '0';
|
cpu_firq <= '0';
|
|
|
for count in 0 to 512 loop
|
for count in 0 to 512 loop
|
SysClk <= '0';
|
SysClk <= '0';
|
if count = 0 then
|
if count = 0 then
|
cpu_reset <= '1';
|
cpu_reset <= '1';
|
elsif count = 1 then
|
elsif count = 1 then
|
cpu_reset <= '0';
|
cpu_reset <= '0';
|
end if;
|
end if;
|
wait for 100 ns;
|
wait for 100 ns;
|
SysClk <= '1';
|
SysClk <= '1';
|
wait for 100 ns;
|
wait for 100 ns;
|
end loop;
|
end loop;
|
|
|
wait; -- will wait forever
|
wait; -- will wait forever
|
END PROCESS;
|
END PROCESS;
|
-- *** End Test Bench - User Defined Section ***
|
-- *** End Test Bench - User Defined Section ***
|
|
|
|
|
rom : PROCESS( cpu_addr )
|
rom : PROCESS( cpu_addr )
|
begin
|
begin
|
cpu_data_in <= rom_data(conv_integer(cpu_addr(5 downto 0)));
|
cpu_data_in <= rom_data(conv_integer(cpu_addr(5 downto 0)));
|
end process;
|
end process;
|
|
|
end behavior; --===================== End of architecture =======================--
|
end behavior; --===================== End of architecture =======================--
|
|
|
|
|