vector wavefrom showing different errors.
hello all, i am using quartus prime lite edition version 21.1 and Questa-intel FPGA software 22.1 version.
i am just trying to generate a waveform for the equation given below
f(x1,x2,x3)=x1.x2+x1.x3+x2.x3
a simple code for above equation is written in verilog as shown
module majority3 (x1, x2, x3, f);
input x1, x2, x3;
output f;
assign f = (x1 & x2) | (x1 & x3) | (x2 & x3);
endmodule
after generating university program VWF and giving some input to x1,x2 and x3 it showing error as shown in image 1 and solving that error it is showing error as shown in image 2.
C:/intelFPGA_pro/22.1/questa_fse/win64/vsim -c -do majority.do
Reading pref.tcl
# 2022.1
# do majority.do
# ** Warning: (vlib-34) Library already exists at "work".
# Errors: 0, Warnings: 1
# Questa Intel Starter FPGA Edition-64 vcom 2022.1 Compiler 2022.01 Jan 29 2022
# Start time: 12:18:51 on Aug 12,2022
# vcom -work work majority.vho
# -- Loading package STANDARD
# ** Error: majority.vho(31): (vcom-1598) Library "cyclonev" not found.
# -- Loading package TEXTIO
# -- Loading package std_logic_1164
# -- Loading package altera_lnsim_components
# ** Error: majority.vho(34): (vcom-1136) Unknown identifier "CYCLONEV".
# ** Note: majority.vho(37): VHDL Compiler exiting
# End time: 12:18:52 on Aug 12,2022, Elapsed time: 0:00:01
# Errors: 2, Warnings: 0
# ** Error: C:/intelFPGA_pro/22.1/questa_fse/win64/vcom failed.
# Executing ONERROR command at macro ./majority.do line 3
Error.
I have attached .qar file. anyone kindly help to remove this error.