diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2025-05-05 17:38:32 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2025-05-05 17:38:32 -0400 |
commit | 88d2e8ff5ab198a115f49ccb4baaa032bb7cde1d (patch) | |
tree | b9f6337e24b5a8ca8e213ceec822b10c74b4a5e3 /pb_APP_log_comb.srcs/sim_1 | |
parent | 9d978999c47941ad235339149b76e1f182c529ac (diff) |
Fix Err
Diffstat (limited to 'pb_APP_log_comb.srcs/sim_1')
-rw-r--r-- | pb_APP_log_comb.srcs/sim_1/imports/verif/AppCombi_top_tb.vhd | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/pb_APP_log_comb.srcs/sim_1/imports/verif/AppCombi_top_tb.vhd b/pb_APP_log_comb.srcs/sim_1/imports/verif/AppCombi_top_tb.vhd index ecbdeaa..493b77e 100644 --- a/pb_APP_log_comb.srcs/sim_1/imports/verif/AppCombi_top_tb.vhd +++ b/pb_APP_log_comb.srcs/sim_1/imports/verif/AppCombi_top_tb.vhd @@ -94,7 +94,22 @@ architecture Behavioral of AppCombi_top_tb is constant sysclk_Period : time := 8 ns;
-
+ constant char_0 : std_logic_vector(3 downto 0) := "0000";
+ constant char_1 : std_logic_vector(3 downto 0) := "0001";
+ constant char_2 : std_logic_vector(3 downto 0) := "0010";
+ constant char_3 : std_logic_vector(3 downto 0) := "0011";
+ constant char_4 : std_logic_vector(3 downto 0) := "0100";
+ constant char_5 : std_logic_vector(3 downto 0) := "0101";
+ constant char_6 : std_logic_vector(3 downto 0) := "0110";
+ constant char_7 : std_logic_vector(3 downto 0) := "0111";
+ constant char_8 : std_logic_vector(3 downto 0) := "0000";
+ constant char_9 : std_logic_vector(3 downto 0) := "0000";
+ constant char_a : std_logic_vector(3 downto 0) := "0000";
+ constant char_b : std_logic_vector(3 downto 0) := "0000";
+ constant char_c : std_logic_vector(3 downto 0) := "0000";
+ constant char_neg : std_logic_vector(3 downto 0) := "0000";
+ constant char_e : std_logic_vector(3 downto 0) := "0000";
+ constant char_r : std_logic_vector(3 downto 0) := "0000";
----------------------------------------------------------------------------
-- declaration d'un tableau pour soumettre un vecteur de test
|