repo2/atari_chips/pokeyv2/flash_08/flash/flash.cmp
1045 | markw | component flash is
|
|
port (
|
|||
clock : in std_logic := 'X'; -- clk
|
|||
avmm_csr_addr : in std_logic := 'X'; -- address
|
|||
avmm_csr_read : in std_logic := 'X'; -- read
|
|||
avmm_csr_writedata : in std_logic_vector(31 downto 0) := (others => 'X'); -- writedata
|
|||
avmm_csr_write : in std_logic := 'X'; -- write
|
|||
avmm_csr_readdata : out std_logic_vector(31 downto 0); -- readdata
|
|||
1112 | markw | avmm_data_addr : in std_logic_vector(15 downto 0) := (others => 'X'); -- address
|
|
1045 | markw | avmm_data_read : in std_logic := 'X'; -- read
|
|
avmm_data_writedata : in std_logic_vector(31 downto 0) := (others => 'X'); -- writedata
|
|||
avmm_data_write : in std_logic := 'X'; -- write
|
|||
avmm_data_readdata : out std_logic_vector(31 downto 0); -- readdata
|
|||
avmm_data_waitrequest : out std_logic; -- waitrequest
|
|||
avmm_data_readdatavalid : out std_logic; -- readdatavalid
|
|||
1105 | markw | avmm_data_burstcount : in std_logic_vector(1 downto 0) := (others => 'X'); -- burstcount
|
|
1045 | markw | reset_n : in std_logic := 'X' -- reset_n
|
|
);
|
|||
end component flash;
|