This error message appears when quartus is integrating
find the corresponding code:
from the sensitive list, the register in the always block is asynchronously reset, so during synthesis, the reset end of the register must only be connected with the reset signal, but the code is connected with the synchronization signal other than the reset signal
modification method:
1. Change to synchronization
always@(posedge clk) begin
if(!rst_n || first_tu_flag) begin
...
end
2. Standard writing
always@(posedge clk or negedge rst_n) begin
if(!rst_n) begin
...
end
else if(first_tu_flag) begin
...
end
Read More:
- KeyError: “Can‘t open attribute (can‘t locate attribute: ‘nrx‘)“
- DOMException: play() failed because the user didn‘t interact with the document first
- chatbot error: [E941] Can‘t find model ‘en‘
- How can Oracle query tables of other users without adding a table user name
- Python-cp950‘ codec can‘t encode
- [resolved] superset failed to create admin user: error! User already exists user or attributeerror: ‘nonetype’‘
- [Solved] CAP_IMAGES: can‘t find starting number (in the name of file)
- 2003 – Can‘t connect to MySQL server on ‘192.168.163.128‘(Unknown error )
- Python error TypeError:can ‘t convert complex to float
- SyntaxError: (unicode error) ‘unicodeescape‘ codec can‘t decode bytes in position 2-3: truncated \UX
- Python2 PicklingError: Can‘t pickle <type ‘instancemethod‘>: attribute lookup __builtin__.instanceme
- java.lang.IllegalArgumentException: error at ::0 can‘t find referenced pointcut anyMethod
- UnhandledPromiseRejectionWarning Error: Can‘t set headers after they are sent (How to Fix)
- SyntaxError: (unicode error) ‘unicodeescape‘ codec can‘t decode bytes in position 2-3: truncated \UX
- AttributeError: Can‘t get attribute ‘LeNet‘ on <module ‘__ main__ “From (error in torch loading model)
- ERROR in Entry module not found Error Can t resolve
- ‘ascii‘ codec can‘t decode byte 0x90 in position 614: ordinal not in range(128)
- QuartusII software exception: error: top level design entity “” is undefined
- AttributeError: Can‘t get attribute ‘SPPF‘ on <module ‘models.common‘ from ‘H:\\yolov5-5.0\\models\\
- UnicodeDecodeError: ‘utf-8‘ codec can‘t decode byte 0xc3 in position 54: invalid continuation byte