URL
https://opencores.org/ocsvn/v65c816/v65c816/trunk
Subversion Repositories v65c816
[/] [v65c816/] [trunk/] [yr.vhd] - Rev 4
Go to most recent revision | Compare with Previous | Blame | View Log
library IEEE; use IEEE.std_logic_1164.all; -- defines std_logic types use IEEE.STD_LOGIC_unsigned.all; use IEEE.STD_LOGIC_arith.all; -- 16 bit index register "Y" entity yr is port( clk: in STD_LOGIC; fwait: in STD_LOGIC; size: in STD_LOGIC; ld_lsb: in STD_LOGIC; ld_msb: in STD_LOGIC; u: in STD_LOGIC; d: in STD_LOGIC; din: in STD_LOGIC_VECTOR(15 downto 0); dout: out STD_LOGIC_VECTOR(15 downto 0) ); end yr; architecture rtl of yr is signal reg: STD_LOGIC_VECTOR(15 downto 0); signal op: STD_LOGIC_VECTOR(3 downto 0); begin op <= u & d & ld_msb & ld_lsb; process(clk) begin if (clk'event and clk = '1') then if fwait = '1' then reg <= reg; else if fwait = '1' then reg <= reg; else case op is when "0001" => reg(7 downto 0) <= din(7 downto 0); -- load lsb reg(15 downto 8) <= reg(15 downto 8); when "0010" => reg(15 downto 8) <= din(7 downto 0); -- load msb reg(7 downto 0) <= reg(7 downto 0); when "0011" => reg <= din; -- load msb & lsb when "0100" => reg <= reg - "0000000000000001"; -- decrement when "1000" => reg <= reg + "0000000000000001"; -- increment when others => reg <= reg; end case; if size = '1' then reg(15 downto 8) <= (others => '0'); -- with size = '1' (X = '1') the msb of index register is always zero end if; end if; end if; end if; end process; dout <= reg; end rtl;
Go to most recent revision | Compare with Previous | Blame | View Log