1 |
174 |
jshamlet |
-- Copyright (c)2013 Jeremy Seth Henry
|
2 |
|
|
-- All rights reserved.
|
3 |
|
|
--
|
4 |
|
|
-- Redistribution and use in source and binary forms, with or without
|
5 |
|
|
-- modification, are permitted provided that the following conditions are met:
|
6 |
|
|
-- * Redistributions of source code must retain the above copyright
|
7 |
|
|
-- notice, this list of conditions and the following disclaimer.
|
8 |
|
|
-- * Redistributions in binary form must reproduce the above copyright
|
9 |
|
|
-- notice, this list of conditions and the following disclaimer in the
|
10 |
|
|
-- documentation and/or other materials provided with the distribution,
|
11 |
|
|
-- where applicable (as part of a user interface, debugging port, etc.)
|
12 |
|
|
--
|
13 |
|
|
-- THIS SOFTWARE IS PROVIDED BY JEREMY SETH HENRY ``AS IS'' AND ANY
|
14 |
|
|
-- EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
15 |
|
|
-- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
16 |
|
|
-- DISCLAIMED. IN NO EVENT SHALL JEREMY SETH HENRY BE LIABLE FOR ANY
|
17 |
|
|
-- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
18 |
|
|
-- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
19 |
|
|
-- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
20 |
|
|
-- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
21 |
|
|
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
22 |
|
|
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
23 |
|
|
--
|
24 |
|
|
-- VHDL Units : o8_rom_32k
|
25 |
|
|
-- Description: Provides a wrapper layer for a 32kx8 ROM model
|
26 |
|
|
|
27 |
|
|
library ieee;
|
28 |
|
|
use ieee.std_logic_1164.all;
|
29 |
|
|
use ieee.std_logic_unsigned.all;
|
30 |
|
|
use ieee.std_logic_arith.all;
|
31 |
|
|
|
32 |
|
|
library work;
|
33 |
|
|
use work.open8_pkg.all;
|
34 |
|
|
|
35 |
|
|
entity o8_rom_32k is
|
36 |
|
|
generic(
|
37 |
|
|
Reset_Level : std_logic;
|
38 |
|
|
Address : ADDRESS_TYPE
|
39 |
|
|
);
|
40 |
|
|
port(
|
41 |
|
|
Clock : in std_logic;
|
42 |
|
|
Reset : in std_logic;
|
43 |
|
|
--
|
44 |
|
|
Bus_Address : in ADDRESS_TYPE;
|
45 |
|
|
Rd_Enable : in std_logic;
|
46 |
|
|
Rd_Data : out DATA_TYPE
|
47 |
|
|
);
|
48 |
|
|
end entity;
|
49 |
|
|
|
50 |
|
|
architecture behave of o8_rom_32k is
|
51 |
|
|
|
52 |
|
|
constant User_Addr : std_logic_vector(15 downto 15) :=
|
53 |
|
|
Address(15 downto 15);
|
54 |
|
|
alias Comp_Addr is Bus_Address(15 downto 15);
|
55 |
|
|
alias ROM_Addr is Bus_Address(14 downto 0);
|
56 |
|
|
|
57 |
|
|
signal Addr_Match : std_logic;
|
58 |
|
|
signal Rd_En : std_logic;
|
59 |
|
|
signal Rd_Data_i : DATA_TYPE;
|
60 |
|
|
|
61 |
|
|
begin
|
62 |
|
|
|
63 |
|
|
-- Note that this RAM should be created without an output FF (unregistered Q)
|
64 |
|
|
U_ROM_CORE : entity work.rom_32k_core
|
65 |
|
|
port map(
|
66 |
|
|
address => ROM_Addr,
|
67 |
|
|
clock => Clock,
|
68 |
|
|
q => Rd_Data_i
|
69 |
|
|
);
|
70 |
|
|
|
71 |
|
|
Addr_Match <= Rd_Enable when Comp_Addr = User_Addr else '0';
|
72 |
|
|
|
73 |
|
|
RAM_proc: process( Reset, Clock )
|
74 |
|
|
begin
|
75 |
|
|
if( Reset = Reset_Level )then
|
76 |
|
|
Rd_En <= '0';
|
77 |
|
|
Rd_Data <= (others => '0');
|
78 |
|
|
elsif( rising_edge(Clock) )then
|
79 |
|
|
Rd_En <= Addr_Match;
|
80 |
|
|
Rd_Data <= (others => '0');
|
81 |
|
|
if( Rd_En = '1' )then
|
82 |
|
|
Rd_Data <= Rd_Data_i;
|
83 |
|
|
end if;
|
84 |
|
|
end if;
|
85 |
|
|
end process;
|
86 |
|
|
|
87 |
|
|
end architecture;
|