我正在尝试使用结构建模使用4位加法器减法器制作一个四位向上计数器 问题是加法器减法器的输入(A)需要更新为等于总和,我尝试在过程中制作信号来解决这个问题,但它在模拟中给出了U 我也不能设置一个相等的输出,但我不得不写出输出等于A
另外,警告信号s为0,我需要它改变0和1,因为它负责向上计数,但是当我尝试在测试台中为它设置值时它会给出错误< / p>
我无法弄清楚这一点,非常感谢任何帮助
模拟错误: 错误:Xst:528 - 信号单位中的多源&gt ;;此信号连接到多个驱动程序。 错误:Xst:528 - 信号单位中的多源&gt ;;此信号连接到多个驱动程序。 错误:Xst:528 - 信号单位中的多源&gt ;;此信号连接到多个驱动程序。 错误:Xst:528 - 信号单位中的多源&gt ;;此信号连接到多个驱动器
模拟警告: 从未使用过输入。如果该端口属于顶级块或者属于子块并保留该子块的层次结构,则该端口将被保留并保持未连接状态。 警告:Xst:653 - 使用信号但从未分配信号。此无源信号将自动连接到值0。
This is the counter code
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity upDown is
Port ( a: in STD_LOGIC_VECTOR(3 downto 0 );
b : in STD_LOGIC_VECTOR(3 downto 0 );
clk,reset,enable : in STD_LOGIC ;
o : out STD_LOGIC_VECTOR(3 downto 0 )
);
end upDown;
architecture Behavioral of upDown is
component addersub4bits is
Port ( a,b : in STD_LOGIC_VECTOR (3 downto 0);
y : out STD_LOGIC_VECTOR (3 downto 0);
s : in STD_LOGIC );
end component ;
signal s : STD_LOGIC ;
-- signal tmp2 : STD_LOGIC_VECTOR(3 downto 0) ;
signal outputsignal: STD_LOGIC_VECTOR(3 downto 0) ; --inside process
begin
ad : addersub4bits port map( a,"0001" ,outputsignal ,s) ;
process (clk,reset,enable)
begin
if(reset= '1' )
then outputsignal <= "0000";
elsif(clk' event and clk='1' ) then
if(enable ='1' ) then
outputsignal<=a ;
else
outputsignal<=outputsignal ; --zay mahowa
end if ;
end if ;
end process ;
--o <= tmp ;
o <=outputsignal ;
end Behavioral ;
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity addersub4bits is
Port ( a,b : in STD_LOGIC_VECTOR (3 downto 0);
y : out STD_LOGIC_VECTOR (3 downto 0);
s : in STD_LOGIC);
end addersub4bits;
architecture dataflow of addersub4bits is
begin
Process(a,b,s)
begin
if (s='1') then
y<= (a + b) ;
else
y<=(a-b) ;
end if ;
end process ;
end dataflow;
TESTBENCH
-------------------------------------------------------------------------------
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
-- Uncomment the following library declaration if using
-- arithmetic functions with Signed or Unsigned values
--USE ieee.numeric_std.ALL;
ENTITY uD_testbench IS
END uD_testbench;
ARCHITECTURE behavior OF uD_testbench IS
-- Component Declaration for the Unit Under Test (UUT)
COMPONENT upDown
PORT(
a : IN std_logic_vector(3 downto 0);
b : IN std_logic_vector(3 downto 0);
clk : IN std_logic;
reset : IN std_logic;
enable : IN std_logic;
o : OUT std_logic_vector(3 downto 0)
);
END COMPONENT;
--Inputs
signal a : std_logic_vector(3 downto 0) := (others => '0');
signal b : std_logic_vector(3 downto 0) := (others => '0');
signal clk : std_logic := '0';
signal reset : std_logic := '0';
signal enable : std_logic := '0';
--Outputs
signal o : std_logic_vector(3 downto 0);
-- Clock period definitions
constant clk_period : time := 10 ns;
BEGIN
-- Instantiate the Unit Under Test (UUT)
uut: upDown PORT MAP (
a => a,
b => b,
clk => clk,
reset => reset,
enable => enable,
o => o
);
-- Clock process definitions
clk_process :process
begin
clk <= '0';
wait for 100 ns ;
clk <= '1';
wait for 100 ns ;
end process;
-- Stimulus process
stim_proc: process
begin
reset <= '1' ;enable <= '0' ; wait for 150 ns ;
reset <= '0'; wait for 300 ns ;
--enable <= '0' ; wait for 200 ns ;
enable <='1' ;wait ;
end process;
END;
答案 0 :(得分:0)
加法器的输出驱动信号 outputsignal ,但您的寄存器也驱动相同的信号。 改变其中一个应该有所帮助。例如,更改加法器输出以馈送寄存器输入和寄存器输出以提供加法器输入。
ad : addersub4bits port map( a=>outputsignal,b=>"0001" , y=>a ,s=>s) ;
您现在可以选择使用寄存器输出 outputsignal (良好编码风格)还是使用加法器输出 a 作为 upDown 的输出。
可选提示1:当使用未解析的类型std_ulogic而不是std_logic时,vhdl编译器必须抱怨由多个源驱动的未解析信号。因此,即使在模拟开始之前,也可以更快地找到这种问题。缺点是VHDL标准中没有IEEE.STD_ U LOGIC_UNSIGNED包。
可选提示2:应首选包ieee.numeric_std而不是ieee.std_logic_arith,它有一些已知问题。
将两个提示放在一起,add / sub仍然可以这样写:
if s='1' then
y<= std_ulogic_vector( unsigned(a) + unsigned(b));
else
y<= std_ulogic_vector( unsigned(a) - unsigned(b));
end if;