Guest
Hello,
I added the fixed_float_types.vhd, fixed_generic_pkg.vhd, fixed_generic_pkg-body.vhd, fixed_pkg.vhd to my project,
I set the library for them to ieee.
I wrote the following code
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.fixed_float_types.all;
use IEEE.fixed_pkg.all;
entity test_mul is
-- Port ( );
end test_mul;
architecture Behavioral of test_mul is
signal a,b :sfixed(7 downto -6);
signal c:sfixed(8 downto -6);
begin
c<=a +b;
end Behavioral;
I got the following warnings and errors :
Analysis Results
sources_1
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_float_types.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_float_types.vhdl":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1020]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1022]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1031]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1033]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1042]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1044]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1053]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1055]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1794]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1815]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1836]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1857]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1878]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1899]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1920]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1941]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1962]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1983]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":2004]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":2025]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4147]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4155]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4163]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4171]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4179]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4187]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4260]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4268]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4276]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4284]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4292]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4300]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4373]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4381]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4389]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4397]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4405]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4413]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4486]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4494]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4502]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4510]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4518]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4526]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4599]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4607]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4615]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4623]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4631]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4639]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4712]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4720]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4728]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4736]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4744]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4752]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4825]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4833]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4841]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4849]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4857]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4865]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4938]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4946]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4954]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4962]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4970]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4978]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_pkg.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_pkg.vhdl":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/load_inp.vhd" into library xil_defaultlib ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/load_inp.vhd":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/test_mul.vhd" into library xil_defaultlib ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/test_mul.vhd":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/work_pkg.vhd" into library work ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/work_pkg.vhd":1]
sim_1
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_float_types.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_float_types.vhdl":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1020]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1022]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1031]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1033]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1042]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1044]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1053]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1055]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1794]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1815]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1836]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1857]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1878]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1899]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1920]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1941]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1962]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1983]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":2004]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":2025]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4147]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4155]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4163]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4171]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4179]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4187]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4260]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4268]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4276]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4284]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4292]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4300]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4373]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4381]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4389]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4397]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4405]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4413]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4486]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4494]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4502]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4510]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4518]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4526]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4599]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4607]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4615]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4623]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4631]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4639]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4712]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4720]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4728]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4736]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4744]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4752]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4825]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4833]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4841]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4849]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4857]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4865]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4938]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4946]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4954]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4962]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4970]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4978]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_pkg.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_pkg.vhdl":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/load_inp.vhd" into library xil_defaultlib ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/load_inp.vhd":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/test_mul.vhd" into library xil_defaultlib ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/test_mul.vhd":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/work_pkg.vhd" into library work ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/work_pkg.vhd":1]
Synthesis
[Vivado_Tcl 4-279] hardware handoff file cannot be generated as there is no block diagram instance in the design
[Common 17-349] Got license for feature 'Synthesis' and/or device 'xc7z045'
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1020]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1031]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1042]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1053]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1794]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1815]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1836]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1857]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1878]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1899]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1920]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1941]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1962]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1983]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":2004]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":2025]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4147]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4155]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4163]
[Synth 8-2757] this construct is only supported in VHDL 1076-2008 ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":73]
[Synth 8-2757] this construct is only supported in VHDL 1076-2008 ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":74]
[Synth 8-1031] unresolved_signed is not declared ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":377]
[Synth 8-1031] unresolved_signed is not declared ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":379]
[Synth 8-970] "and" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":687]
[Synth 8-970] "nand" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":688]
[Synth 8-970] "or" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":689]
[Synth 8-970] "nor" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":690]
[Synth 8-970] "xor" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":691]
[Synth 8-970] "xnor" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":692]
[Synth 8-970] "and" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":693]
[Synth 8-970] "nand" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":694]
[Synth 8-970] "or" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":695]
[Synth 8-970] "nor" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":696]
[Synth 8-970] "xor" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":697]
[Synth 8-970] "xnor" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":698]
[Synth 8-1031] unresolved_unsigned is not declared ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":802]
[Synth 8-1031] unresolved_unsigned is not declared ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":810]
[Synth 8-1031] unresolved_unsigned is not declared ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":818]
can someone help
I added the fixed_float_types.vhd, fixed_generic_pkg.vhd, fixed_generic_pkg-body.vhd, fixed_pkg.vhd to my project,
I set the library for them to ieee.
I wrote the following code
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.fixed_float_types.all;
use IEEE.fixed_pkg.all;
entity test_mul is
-- Port ( );
end test_mul;
architecture Behavioral of test_mul is
signal a,b :sfixed(7 downto -6);
signal c:sfixed(8 downto -6);
begin
c<=a +b;
end Behavioral;
I got the following warnings and errors :
Analysis Results
sources_1
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_float_types.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_float_types.vhdl":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1020]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1022]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1031]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1033]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1042]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1044]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1053]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1055]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1794]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1815]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1836]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1857]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1878]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1899]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1920]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1941]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1962]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1983]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":2004]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":2025]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4147]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4155]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4163]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4171]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4179]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4187]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4260]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4268]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4276]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4284]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4292]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4300]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4373]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4381]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4389]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4397]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4405]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4413]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4486]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4494]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4502]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4510]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4518]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4526]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4599]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4607]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4615]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4623]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4631]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4639]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4712]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4720]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4728]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4736]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4744]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4752]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4825]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4833]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4841]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4849]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4857]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4865]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4938]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4946]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4954]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4962]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4970]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4978]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_pkg.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_pkg.vhdl":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/load_inp.vhd" into library xil_defaultlib ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/load_inp.vhd":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/test_mul.vhd" into library xil_defaultlib ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/test_mul.vhd":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/work_pkg.vhd" into library work ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/work_pkg.vhd":1]
sim_1
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_float_types.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_float_types.vhdl":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1020]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1022]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1031]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1033]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1042]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1044]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1053]
[HDL 9-806] Syntax error near "if". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1055]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1794]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1815]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1836]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1857]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1878]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1899]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1920]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1941]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1962]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1983]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":2004]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":2025]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4147]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4155]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4163]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4171]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4179]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4187]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4260]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4268]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4276]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4284]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4292]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4300]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4373]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4381]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4389]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4397]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4405]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4413]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4486]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4494]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4502]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4510]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4518]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4526]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4599]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4607]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4615]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4623]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4631]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4639]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4712]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4720]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4728]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4736]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4744]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4752]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4825]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4833]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4841]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4849]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4857]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4865]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4938]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4946]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4954]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4962]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4970]
[HDL 9-806] Syntax error near "?". ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4978]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_pkg.vhdl" into library IEEE ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_pkg.vhdl":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/load_inp.vhd" into library xil_defaultlib ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/load_inp.vhd":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/test_mul.vhd" into library xil_defaultlib ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/test_mul.vhd":1]
[HDL 9-1061] Parsing VHDL file "D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/work_pkg.vhd" into library work ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/new/work_pkg.vhd":1]
Synthesis
[Vivado_Tcl 4-279] hardware handoff file cannot be generated as there is no block diagram instance in the design
[Common 17-349] Got license for feature 'Synthesis' and/or device 'xc7z045'
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1020]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1031]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1042]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1053]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1794]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1815]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1836]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1857]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1878]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1899]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1920]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1941]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1962]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":1983]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":2004]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":2025]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4147]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4155]
[Synth 8-2715] syntax error near ? ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg-body.vhdl":4163]
[Synth 8-2757] this construct is only supported in VHDL 1076-2008 ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":73]
[Synth 8-2757] this construct is only supported in VHDL 1076-2008 ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":74]
[Synth 8-1031] unresolved_signed is not declared ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":377]
[Synth 8-1031] unresolved_signed is not declared ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":379]
[Synth 8-970] "and" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":687]
[Synth 8-970] "nand" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":688]
[Synth 8-970] "or" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":689]
[Synth 8-970] "nor" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":690]
[Synth 8-970] "xor" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":691]
[Synth 8-970] "xnor" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":692]
[Synth 8-970] "and" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":693]
[Synth 8-970] "nand" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":694]
[Synth 8-970] "or" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":695]
[Synth 8-970] "nor" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":696]
[Synth 8-970] "xor" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":697]
[Synth 8-970] "xnor" expects 2 arguments ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":698]
[Synth 8-1031] unresolved_unsigned is not declared ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":802]
[Synth 8-1031] unresolved_unsigned is not declared ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":810]
[Synth 8-1031] unresolved_unsigned is not declared ["D:/GhadaKdr/Xilinx_Projects/Tutorials/Embedded/project_t/project_t.srcs/sources_1/imports/new/fixed_generic_pkg.vhdl":818]
can someone help