2017-10-09 20:35:47 +00:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- Company:
|
|
|
|
-- Engineer:
|
|
|
|
--
|
2017-10-10 20:55:21 +00:00
|
|
|
-- Create Date: 00:42:59 10/10/2017
|
2017-10-09 20:35:47 +00:00
|
|
|
-- Design Name:
|
2017-10-10 20:55:21 +00:00
|
|
|
-- Module Name: U:/AppleIISd/VHDL/IO_Test.vhd
|
2017-10-09 20:35:47 +00:00
|
|
|
-- Project Name: AppleIISd
|
|
|
|
-- Target Device:
|
|
|
|
-- Tool versions:
|
|
|
|
-- Description:
|
|
|
|
--
|
2017-10-10 20:55:21 +00:00
|
|
|
-- VHDL Test Bench Created by ISE for module: IO
|
2017-10-09 20:35:47 +00:00
|
|
|
--
|
|
|
|
-- Dependencies:
|
|
|
|
--
|
|
|
|
-- Revision:
|
|
|
|
-- Revision 0.01 - File Created
|
|
|
|
-- Additional Comments:
|
|
|
|
--
|
|
|
|
-- Notes:
|
|
|
|
-- This testbench has been automatically generated using types std_logic and
|
|
|
|
-- std_logic_vector for the ports of the unit under test. Xilinx recommends
|
|
|
|
-- that these types always be used for the top-level I/O of a design in order
|
|
|
|
-- to guarantee that the testbench will bind correctly to the post-implementation
|
|
|
|
-- simulation model.
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
LIBRARY ieee;
|
|
|
|
USE ieee.std_logic_1164.ALL;
|
|
|
|
|
|
|
|
-- Uncomment the following library declaration if using
|
|
|
|
-- arithmetic functions with Signed or Unsigned values
|
|
|
|
--USE ieee.numeric_std.ALL;
|
|
|
|
|
|
|
|
ENTITY AppleIISd_Test IS
|
|
|
|
END AppleIISd_Test;
|
|
|
|
|
|
|
|
ARCHITECTURE behavior OF AppleIISd_Test IS
|
|
|
|
|
|
|
|
-- Component Declaration for the Unit Under Test (UUT)
|
|
|
|
|
|
|
|
COMPONENT AppleIISd
|
|
|
|
PORT(
|
2017-10-16 20:53:41 +00:00
|
|
|
ADD_HIGH : IN std_logic_vector(11 downto 8);
|
2017-10-10 20:55:21 +00:00
|
|
|
ADD_LOW : IN std_logic_vector(1 downto 0);
|
|
|
|
B : OUT std_logic_vector(10 downto 8);
|
|
|
|
CARD : IN std_logic;
|
|
|
|
DATA : INOUT std_logic_vector(7 downto 0);
|
|
|
|
CLK : IN std_logic;
|
|
|
|
LED : OUT std_logic;
|
|
|
|
NDEV_SEL : IN std_logic;
|
|
|
|
NG : OUT std_logic;
|
|
|
|
NIO_SEL : IN std_logic;
|
|
|
|
NIO_STB : IN std_logic;
|
|
|
|
NOE : OUT std_logic;
|
|
|
|
PHI0 : IN std_logic;
|
|
|
|
NRESET : IN std_logic;
|
|
|
|
RNW : IN std_logic;
|
|
|
|
MISO : IN std_logic;
|
|
|
|
MOSI : OUT std_logic;
|
|
|
|
NSEL : OUT std_logic;
|
|
|
|
SCLK : OUT std_logic;
|
|
|
|
WP : IN std_logic;
|
|
|
|
|
|
|
|
data_dbg : out std_logic_vector (7 downto 0);
|
2017-10-15 18:58:33 +00:00
|
|
|
add_dbg : out std_logic_vector (1 downto 0);
|
|
|
|
data_en_dbg : out std_logic
|
2017-10-09 20:35:47 +00:00
|
|
|
);
|
|
|
|
END COMPONENT;
|
|
|
|
|
|
|
|
|
|
|
|
--Inputs
|
2017-10-16 20:53:41 +00:00
|
|
|
signal ADD_HIGH : std_logic_vector(11 downto 8) := (others => '0');
|
2017-10-10 20:55:21 +00:00
|
|
|
signal ADD_LOW : std_logic_vector(1 downto 0) := (others => 'U');
|
|
|
|
signal CARD : std_logic := '0';
|
|
|
|
signal CLK : std_logic := '0';
|
|
|
|
signal NDEV_SEL : std_logic := '1';
|
|
|
|
signal NIO_SEL : std_logic := '1';
|
|
|
|
signal NIO_STB : std_logic := '1';
|
2017-10-13 21:04:38 +00:00
|
|
|
signal PHI0 : std_logic := '1';
|
2017-10-10 20:55:21 +00:00
|
|
|
signal NRESET : std_logic := '1';
|
|
|
|
signal RNW : std_logic := '1';
|
|
|
|
signal MISO : std_logic := '1';
|
|
|
|
signal WP : std_logic := '0';
|
|
|
|
|
|
|
|
--BiDirs
|
|
|
|
signal DATA : std_logic_vector(7 downto 0) := (others => 'Z');
|
2017-10-09 20:35:47 +00:00
|
|
|
|
|
|
|
--Outputs
|
2017-10-10 20:55:21 +00:00
|
|
|
signal B : std_logic_vector(10 downto 8);
|
|
|
|
signal LED : std_logic;
|
|
|
|
signal NG : std_logic;
|
|
|
|
signal NOE : std_logic;
|
|
|
|
signal MOSI : std_logic;
|
|
|
|
signal NSEL : std_logic;
|
|
|
|
signal SCLK : std_logic;
|
|
|
|
|
|
|
|
signal data_dbg : std_logic_vector (7 downto 0);
|
|
|
|
signal add_dbg : std_logic_vector (1 downto 0);
|
2017-10-15 18:58:33 +00:00
|
|
|
signal data_en_dbg : std_logic;
|
2017-10-09 20:35:47 +00:00
|
|
|
|
|
|
|
-- Clock period definitions
|
2017-10-10 20:55:21 +00:00
|
|
|
constant CLK_period : time := 142 ns;
|
|
|
|
|
|
|
|
-- Bus timings
|
|
|
|
-- worst case
|
|
|
|
constant ADD_valid : time := 300 ns; -- II+
|
|
|
|
constant DATA_valid : time := 200 ns; -- II+
|
|
|
|
constant ADD_hold : time := 15 ns; -- IIgs
|
|
|
|
--best case
|
|
|
|
--constant ADD_valid : time := 100 ns; -- IIgs
|
|
|
|
--constant DATA_valid : time := 30 ns; -- IIgs
|
|
|
|
--constant ADD_hold : time := 15 ns; -- IIgs
|
2017-10-09 20:35:47 +00:00
|
|
|
|
|
|
|
BEGIN
|
|
|
|
|
|
|
|
-- Instantiate the Unit Under Test (UUT)
|
|
|
|
uut: AppleIISd PORT MAP (
|
2017-10-10 20:55:21 +00:00
|
|
|
ADD_HIGH => ADD_HIGH,
|
|
|
|
ADD_LOW => ADD_LOW,
|
|
|
|
B => B,
|
|
|
|
CARD => CARD,
|
|
|
|
DATA => DATA,
|
|
|
|
CLK => CLK,
|
|
|
|
LED => LED,
|
|
|
|
NDEV_SEL => NDEV_SEL,
|
|
|
|
NG => NG,
|
|
|
|
NIO_SEL => NIO_SEL,
|
|
|
|
NIO_STB => NIO_STB,
|
|
|
|
NOE => NOE,
|
|
|
|
PHI0 => PHI0,
|
|
|
|
NRESET => NRESET,
|
|
|
|
RNW => RNW,
|
|
|
|
MISO => MISO,
|
|
|
|
MOSI => MOSI,
|
|
|
|
NSEL => NSEL,
|
|
|
|
SCLK => SCLK,
|
|
|
|
WP => WP,
|
|
|
|
|
|
|
|
data_dbg => data_dbg,
|
2017-10-15 18:58:33 +00:00
|
|
|
add_dbg => add_dbg,
|
|
|
|
data_en_dbg => data_en_dbg
|
2017-10-09 20:35:47 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
-- Clock process definitions
|
2017-10-10 20:55:21 +00:00
|
|
|
CLK_process :process
|
2017-10-09 20:35:47 +00:00
|
|
|
begin
|
2017-10-10 20:55:21 +00:00
|
|
|
CLK <= '0';
|
|
|
|
wait for CLK_period/2;
|
|
|
|
CLK <= '1';
|
|
|
|
wait for CLK_period/2;
|
|
|
|
end process;
|
|
|
|
|
|
|
|
PHI0_process :process(CLK)
|
2017-10-09 22:41:31 +00:00
|
|
|
variable counter : integer range 0 to 7;
|
2017-10-09 20:35:47 +00:00
|
|
|
begin
|
2017-10-10 20:55:21 +00:00
|
|
|
if rising_edge(CLK) or falling_edge(CLK) then
|
2017-10-09 22:41:31 +00:00
|
|
|
counter := counter + 1;
|
|
|
|
if counter = 7 then
|
2017-10-10 20:55:21 +00:00
|
|
|
PHI0 <= not PHI0;
|
2017-10-09 22:41:31 +00:00
|
|
|
counter := 0;
|
|
|
|
end if;
|
|
|
|
end if;
|
2017-10-09 20:35:47 +00:00
|
|
|
end process;
|
2017-10-10 20:55:21 +00:00
|
|
|
|
2017-10-09 20:35:47 +00:00
|
|
|
|
|
|
|
-- Stimulus process
|
|
|
|
stim_proc: process
|
|
|
|
begin
|
2017-10-09 22:41:31 +00:00
|
|
|
-- hold reset state.
|
2017-10-10 21:37:21 +00:00
|
|
|
wait for CLK_period * 10;
|
2017-10-10 20:55:21 +00:00
|
|
|
NRESET <= '0';
|
|
|
|
wait for CLK_period * 20;
|
|
|
|
NRESET <= '1';
|
|
|
|
wait for CLK_period * 10;
|
|
|
|
DATA <= (others => 'Z');
|
|
|
|
ADD_LOW <= (others => 'U');
|
2017-10-10 21:37:21 +00:00
|
|
|
|
|
|
|
-- read reg 3
|
2017-10-10 20:55:21 +00:00
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
wait for ADD_valid;
|
2017-10-10 21:37:21 +00:00
|
|
|
ADD_LOW <= (others => '1');
|
2017-10-10 20:55:21 +00:00
|
|
|
RNW <= '1';
|
|
|
|
DATA <= (others => 'U');
|
|
|
|
wait until rising_edge(PHI0);
|
|
|
|
NDEV_SEL <= '0';
|
|
|
|
DATA <= (others => 'Z');
|
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
NDEV_SEL <= '1';
|
|
|
|
wait for ADD_hold;
|
|
|
|
ADD_LOW <= (others => 'U');
|
|
|
|
|
2017-10-23 20:42:27 +00:00
|
|
|
-- select card
|
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
wait for ADD_valid;
|
|
|
|
ADD_LOW <= (others => '1');
|
|
|
|
RNW <= '0';
|
|
|
|
DATA <= (others => 'U');
|
|
|
|
wait until rising_edge(PHI0);
|
|
|
|
NDEV_SEL <= '0';
|
|
|
|
DATA <= (others => 'Z');
|
|
|
|
wait for DATA_valid;
|
|
|
|
DATA <= X"00";
|
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
NDEV_SEL <= '1';
|
|
|
|
wait for ADD_hold;
|
|
|
|
--wait for CLK_period;
|
|
|
|
ADD_LOW <= (others => 'U');
|
|
|
|
RNW <= '1';
|
|
|
|
DATA <= (others => 'Z');
|
|
|
|
|
2017-10-10 21:37:21 +00:00
|
|
|
-- send data
|
2017-10-10 20:55:21 +00:00
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
wait for ADD_valid;
|
2017-10-10 21:37:21 +00:00
|
|
|
ADD_LOW <= (others => '0');
|
|
|
|
RNW <= '0';
|
|
|
|
DATA <= (others => 'U');
|
|
|
|
wait until rising_edge(PHI0);
|
|
|
|
NDEV_SEL <= '0';
|
|
|
|
DATA <= (others => 'Z');
|
|
|
|
wait for DATA_valid;
|
2017-10-15 18:58:33 +00:00
|
|
|
DATA <= X"AA";
|
2017-10-10 21:37:21 +00:00
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
NDEV_SEL <= '1';
|
|
|
|
wait for ADD_hold;
|
|
|
|
--wait for CLK_period;
|
|
|
|
ADD_LOW <= (others => 'U');
|
2017-10-10 20:55:21 +00:00
|
|
|
RNW <= '1';
|
2017-10-10 21:37:21 +00:00
|
|
|
DATA <= (others => 'Z');
|
2017-10-23 20:42:27 +00:00
|
|
|
wait for 20 us;
|
|
|
|
|
|
|
|
-- deselect card
|
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
wait for ADD_valid;
|
|
|
|
ADD_LOW <= (others => '1');
|
|
|
|
RNW <= '0';
|
|
|
|
DATA <= (others => 'U');
|
|
|
|
wait until rising_edge(PHI0);
|
|
|
|
NDEV_SEL <= '0';
|
|
|
|
DATA <= (others => 'Z');
|
|
|
|
wait for DATA_valid;
|
|
|
|
DATA <= X"01";
|
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
NDEV_SEL <= '1';
|
|
|
|
wait for ADD_hold;
|
|
|
|
--wait for CLK_period;
|
|
|
|
ADD_LOW <= (others => 'U');
|
|
|
|
RNW <= '1';
|
|
|
|
DATA <= (others => 'Z');
|
2017-10-10 21:37:21 +00:00
|
|
|
|
|
|
|
-- write ece
|
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
wait for ADD_valid;
|
|
|
|
ADD_LOW <= "01";
|
|
|
|
RNW <= '0';
|
2017-10-10 20:55:21 +00:00
|
|
|
DATA <= (others => 'U');
|
|
|
|
wait until rising_edge(PHI0);
|
|
|
|
NDEV_SEL <= '0';
|
|
|
|
DATA <= (others => 'Z');
|
2017-10-10 21:37:21 +00:00
|
|
|
wait for DATA_valid;
|
|
|
|
DATA <= x"04";
|
2017-10-10 20:55:21 +00:00
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
NDEV_SEL <= '1';
|
|
|
|
wait for ADD_hold;
|
2017-10-10 21:37:21 +00:00
|
|
|
--wait for CLK_period;
|
2017-10-10 20:55:21 +00:00
|
|
|
ADD_LOW <= (others => 'U');
|
2017-10-10 21:37:21 +00:00
|
|
|
RNW <= '1';
|
|
|
|
DATA <= (others => 'Z');
|
2017-10-10 20:55:21 +00:00
|
|
|
|
|
|
|
-- send data
|
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
wait for ADD_valid;
|
|
|
|
ADD_LOW <= (others => '0');
|
|
|
|
RNW <= '0';
|
|
|
|
DATA <= (others => 'U');
|
|
|
|
wait until rising_edge(PHI0);
|
|
|
|
NDEV_SEL <= '0';
|
|
|
|
DATA <= (others => 'Z');
|
|
|
|
wait for DATA_valid;
|
2017-10-15 18:58:33 +00:00
|
|
|
DATA <= X"AA";
|
2017-10-10 20:55:21 +00:00
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
NDEV_SEL <= '1';
|
|
|
|
wait for ADD_hold;
|
2017-10-10 21:37:21 +00:00
|
|
|
--wait for CLK_period;
|
2017-10-10 20:55:21 +00:00
|
|
|
ADD_LOW <= (others => 'U');
|
|
|
|
RNW <= '1';
|
|
|
|
DATA <= (others => 'Z');
|
2017-10-10 21:37:21 +00:00
|
|
|
|
2017-10-15 18:58:33 +00:00
|
|
|
-- read eprom low
|
|
|
|
wait for 3 us;
|
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
wait for ADD_valid;
|
|
|
|
ADD_LOW <= (others => '0');
|
2017-10-16 20:53:41 +00:00
|
|
|
ADD_HIGH <= "0100"; -- must become "111"
|
2017-10-15 18:58:33 +00:00
|
|
|
RNW <= '1';
|
|
|
|
DATA <= (others => 'U');
|
|
|
|
wait until rising_edge(PHI0);
|
|
|
|
NIO_SEL <= '0';
|
|
|
|
DATA <= (others => 'Z');
|
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
NIO_SEL <= '1';
|
|
|
|
wait for ADD_hold;
|
|
|
|
ADD_LOW <= (others => 'U');
|
|
|
|
ADD_HIGH <= (others => 'U');
|
|
|
|
|
2017-10-16 20:53:41 +00:00
|
|
|
-- read eprom high, selected
|
2017-10-16 18:21:09 +00:00
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
wait for ADD_valid;
|
|
|
|
ADD_LOW <= (others => '0');
|
2017-10-16 20:53:41 +00:00
|
|
|
ADD_HIGH <= "1001"; -- must become "001"
|
2017-10-16 18:21:09 +00:00
|
|
|
RNW <= '1';
|
|
|
|
DATA <= (others => 'U');
|
|
|
|
wait until rising_edge(PHI0);
|
|
|
|
NIO_STB <= '0';
|
|
|
|
DATA <= (others => 'Z');
|
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
NIO_STB <= '1';
|
|
|
|
wait for ADD_hold;
|
|
|
|
ADD_LOW <= (others => 'U');
|
|
|
|
ADD_HIGH <= (others => 'U');
|
|
|
|
|
2017-10-15 18:58:33 +00:00
|
|
|
-- read $CFFF
|
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
wait for ADD_valid;
|
|
|
|
ADD_LOW <= (others => '1');
|
2017-10-16 20:53:41 +00:00
|
|
|
ADD_HIGH <= "1111";
|
2017-10-15 18:58:33 +00:00
|
|
|
RNW <= '1';
|
|
|
|
DATA <= (others => 'U');
|
|
|
|
wait until rising_edge(PHI0);
|
|
|
|
NIO_STB <= '0';
|
|
|
|
DATA <= (others => 'Z');
|
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
NIO_STB <= '1';
|
|
|
|
wait for ADD_hold;
|
|
|
|
ADD_LOW <= (others => 'U');
|
|
|
|
ADD_HIGH <= (others => 'U');
|
|
|
|
|
2017-10-16 20:53:41 +00:00
|
|
|
-- read eprom high, deselected
|
2017-10-15 18:58:33 +00:00
|
|
|
wait until falling_edge(PHI0);
|
|
|
|
wait for ADD_valid;
|
|
|
|
ADD_LOW <= (others => '0');
|
2017-10-16 20:53:41 +00:00
|
|
|
ADD_HIGH <= "1101"; -- must become "101"
|
2017-10-15 18:58:33 +00:00
|
|
|
RNW <= '1';
|
|
|
|
DATA <= (others => 'U');
|
|
|
|
wait until rising_edge(PHI0);
|
2017-10-16 18:21:09 +00:00
|
|
|
NIO_STB <= '0';
|
2017-10-15 18:58:33 +00:00
|
|
|
DATA <= (others => 'Z');
|
|
|
|
wait until falling_edge(PHI0);
|
2017-10-16 18:21:09 +00:00
|
|
|
NIO_STB <= '1';
|
2017-10-15 18:58:33 +00:00
|
|
|
wait for ADD_hold;
|
|
|
|
ADD_LOW <= (others => 'U');
|
|
|
|
ADD_HIGH <= (others => 'U');
|
|
|
|
|
2017-10-09 20:35:47 +00:00
|
|
|
wait;
|
|
|
|
end process;
|
|
|
|
|
|
|
|
END;
|