URL
https://opencores.org/ocsvn/open8_urisc/open8_urisc/trunk
[/] [open8_urisc/] [trunk/] [VHDL/] [o8_lfsr32.vhd] - Diff between revs 223 and 224
Go to most recent revision |
Show entire file |
Details |
Blame |
View Log
Rev 223 |
Rev 224 |
Line 31... |
Line 31... |
-- Revision History
|
-- Revision History
|
-- Author Date Change
|
-- Author Date Change
|
------------------ -------- ---------------------------------------------------
|
------------------ -------- ---------------------------------------------------
|
-- Seth Henry 04/25/18 Design Start
|
-- Seth Henry 04/25/18 Design Start
|
-- Seth Henry 04/10/20 Code cleanup and comments
|
-- Seth Henry 04/10/20 Code cleanup and comments
|
|
-- Seth Henry 04/16/20 Modified to use Open8 bus record
|
|
|
library ieee;
|
library ieee;
|
use ieee.std_logic_1164.all;
|
use ieee.std_logic_1164.all;
|
use ieee.std_logic_misc.all;
|
use ieee.std_logic_misc.all;
|
|
|
Line 42... |
Line 43... |
use work.open8_pkg.all;
|
use work.open8_pkg.all;
|
|
|
entity o8_lfsr32 is
|
entity o8_lfsr32 is
|
generic(
|
generic(
|
Init_Seed : std_logic_vector(31 downto 0) := x"CAFEBABE";
|
Init_Seed : std_logic_vector(31 downto 0) := x"CAFEBABE";
|
Reset_Level : std_logic;
|
|
Address : ADDRESS_TYPE
|
Address : ADDRESS_TYPE
|
);
|
);
|
port(
|
port(
|
Clock : in std_logic;
|
|
Reset : in std_logic;
|
|
--
|
|
Open8_Bus : in OPEN8_BUS_TYPE;
|
Open8_Bus : in OPEN8_BUS_TYPE;
|
Rd_Data : out DATA_TYPE
|
Rd_Data : out DATA_TYPE
|
);
|
);
|
end entity;
|
end entity;
|
|
|
architecture behave of o8_lfsr32 is
|
architecture behave of o8_lfsr32 is
|
|
|
|
alias Clock is Open8_Bus.Clock;
|
|
alias Reset is Open8_Bus.Reset;
|
|
|
constant User_Addr : std_logic_vector(15 downto 1)
|
constant User_Addr : std_logic_vector(15 downto 1)
|
:= Address(15 downto 1);
|
:= Address(15 downto 1);
|
alias Comp_Addr is Open8_Bus.Address(15 downto 1);
|
alias Comp_Addr is Open8_Bus.Address(15 downto 1);
|
alias Reg_Sel is Open8_Bus.Address(0);
|
alias Reg_Sel is Open8_Bus.Address(0);
|
signal Reg_Sel_q : std_logic := '0';
|
signal Reg_Sel_q : std_logic := '0';
|
© copyright 1999-2024
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.