J'essaye d'écrire un module VHDL mais j'ai un problème avec l'instruction if. Très probablement, c'est une erreur stupide, mais depuis que je suis très nouveau à VHDL, je ne pouvais pas comprendre le problème. Voici mon code:Erreur TICK inattendue
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
entity binary_add is
port(n1 : in std_logic_vector(3 downto 0);
n2 : in std_logic_vector(3 downto 0);
segments : out std_logic_vector(7 downto 0);
bool : out bit;
o : out std_logic_vector(3 downto 0);
DNout : out std_logic_vector(3 downto 0));
end binary_add;
architecture Behavioral of binary_add is
begin
process(n1, n2)
begin
o <= n1 + n2;
if(o = '1010') then
bool <= '1';
else
bool <= '0';
end if;
end process;
end Behavioral;
Et je reçois la réponse suivante à partir de la première ligne de l'instruction if:
ERROR:HDLParsers:## - "C:/Xilinx/12.3/ISE_DS/ISE/.../binary_add.vhd" Line ##. parse error, unexpected TICK
Qu'est-ce que je fais mal?
Hi. Si une réponse vous a aidé, veuillez upvote. Acceptez le plus utile! – Marty