What is the difference between initial block and final block?
Companies Related Questions, System Verilog 0 CommentsDifferences 1. The most obvious one : Initial blocks get executed at the beginning of the simulation, final block gets executed at the end of simulation 2. Final block has to be executed in zero time, which implies it can’t have any delay, wait, or non-blocking assignments. Initial block doesn’t have any such restrictions of