Quartus 的 RTL 查看器中如何描述变量。我打开 RTL 查看器,它没有显示任何变量寄存器。
例如:
variable op_code : std_logic_vector(7 downto 0);
RTL 查看器不会在 RTL 查看器中显示 op_code 是否有原因?我正在使用 VHDL。
编辑:
op_code(7 downto 0) <=instr_reg(31 downto 24);
if ( op_code = ADD or op_code = MYSUB) then <br>
C_addr <= instr_reg(14 downto 10); <br>
end if;
CASE op_code(7 downto 0) IS
--some case statments
END CASE;