有关VHDL中null, 在Verilog HDL 中的表示方法 YB

VHDL:

  if  cnt_max = maxtime then

    null;

  else

    @@@@@@@@@@@;

Verilog:

  if(cnt_max == maxtime)

    ;

  else

    @@@@@@@@@@@@@;

原文地址:https://www.cnblogs.com/capark/p/2734757.html