VHDL で簡単なマイクロプロセッサを作成する課題があります。私のコードは次のようになります
architecture Behavioral of uc is
type instruction_t is array (255 downto 0) of std_logic_vector (15 downto 0);
constant LOAD : std_logic_vector(7 downto 0) :=x"01";
--some more instruction codes defined
signal PC : std_logic_vector (7 downto 0); -- program counter
signal cur_inst : std_logic_vector (15 downto 0);
constant ROM :
instruction_t :=
(
(LOAD & x"07"),
(ADD & x"05"),
-- some more code goes here
others => x"0000"
);
begin
process (CLK, RESET) is
begin
if RESET = '1' then
-- do stuff
elsif rising_edge(CLK) then
cur_inst <= ROM(conv_integer(PC));
PC <= PC + 1;
-- some other stuff
end if;
end process;
end Behavioral;
私が抱えている問題は、この部分にあります:
cur_inst <= ROM(conv_integer(PC));
単に何も起こらないためです - cur_inst は常にゼロです。使ってみた
cur_inst <= ROM(to_integer(unsigned(PC));
しかし、結果は同じです - 何も得られません。PC は正しくインクリメントされていますが、ROM アレイから何も読み取れません。また、PC を unsigned または integer として定義しようとしましたが、結果は同じです。私は何を間違っていますか?