Serial flash Loader IP core
Move the code of my project from Cyclone V to Cyclone 10 GX and got warnings (16479 & 13228):
Warning(16749): Verilog HDL warning at alt_sfl_enhanced.v(161): identifier dclkin_without_sdr is used before its declaration
...
Warning(13228): Verilog HDL or VHDL warning at alt_sfl_enhanced.v(93): formal port 'jtag_state_sdrs' has no actual or default value
This warnings are just few of the received(36 in all).
I dont care about 16479, but what's problem with 13228?
*Declaration of module (altera megafunction)*
module alt_sfl_enhanced
(
// Hub IOs
ir_in,
ir_out,
tdi,
raw_tck,
usr1,
jtag_state_sdrs,
jtag_state_sdr,
jtag_state_udr,
jtag_state_rti,
tdo,
// ASMI IOs
dclkin,
scein,
sdoin,
data1in,
data2in,
data3in,
data0oe,
data1oe,
data2oe,
data3oe,
asmi_access_request,
data0out,
data1out,
data2out,
data3out,
asmi_access_granted
)
i am using Quartus Prime pro 19.4. How to desable messages or solve problem?