gpt4 book ai didi

vhdl - 子类型指示 VHDL200X 的非法语法

转载 作者:行者123 更新时间:2023-12-03 08:24:46 24 4
gpt4 key购买 nike

我正在尝试创建一个“动态”二维数组,我可以在我的实体中使用泛型进行设置。

我遵循了 https://s3.amazonaws.com/verificationhorizons.verificationacademy.com/volume-8_issue-3/articles/stream/vhdl-2008-why-it-matters_vh-v8-i3.pdf 中的示例第 32 页。

我的类型在包中的声明 (TypeDeclarations):

library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;

package TypeDeclarations is

-- Type BusArray -----------------------------------------------------
-- Can be used by: DArray((Y - 1) downto 0)((X - 1) downto 0); --
--
type TArray is array (natural range <>) of std_logic_vector; --
--
----------------------------------------------------------------------
end package;

我的实体:
-- Libraries
library ieee;
use ieee.std_logic_1164.all;

-- Own libraries
use work.TypeDeclarations.all;

entity DynamicRegisterSet is
generic (
INPUT_DATAWIDTH : integer := 1;
OUTPUT_DATAWIDTH : integer := 8;
N_REGISTERS : integer := 1);
port (
MCLK : in std_logic := '0';
WE : in std_logic := '0';

-- input data
DATA : in std_logic_vector((INPUT_DATAWIDTH-1) downto 0) := (others => '0');
SEL : in integer range 0 to (INPUT_DATAWIDTH-1) := 0;

-- in/output data (register set)
REGISTERSET : inout TArray((N_REGISTERS-1) downto 0)((OUTPUT_DATAWIDTH-1) downto 0) := (others => (others => '0')));
end DynamicRegisterSet;

这是我第一次使用更新的编译器 (VHDL200X),我不认为我做错了,但否则我不会收到此消息:

VHDL\CommonBlocks\DynamicRegisterSet\Sources\DynamicRegisterSet.vhd" Line 25: Illegal syntax for subtype indication



有人有什么建议吗?我将不胜感激,谢谢!

最佳答案

Xilinx ISE 14.7 不支持 VHDL-2008...

它们支持一手完整的 VHDL-2002/2008 功能,但不支持不受约束的数组元素。

Vivado 在 2016.1 中添加了 VHDL-2008 支持并将其设置为默认值。但据我所知,它没有完整的 VHDL-2008 支持。

赛灵思 XST 综合用户指南在 VHDL 部分列出了这些功能。 (抱歉我手机上没有 UG 号。)

关于vhdl - 子类型指示 VHDL200X 的非法语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36989569/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com