Raise Objection Syntax

In reply to enbiya.h:

Hi,

in system verilog it is not allowed to declare variables after a command.

In verilog a task was defined like this:

task a();
reg i = 0;
begin
call_to_function();
endtask;

In system verilog it is allowed to leave the begin out but you still have to follow the
order.

I hope this helps bye