[sv-bc] var on inputs

From: danielm <danielm_at_.....>
Date: Wed Feb 13 2008 - 01:45:44 PST
For var inputs should we allow to have such input driven by both - port
connection, and porcedural block like in below example?
 
 
module top;
        wire w;
        sub uut(w); //< input of sub is driven by port connection
endmodule
 

module sub (input reg i);
        initial i=1;  //input of sub is driven by procedural assignment
        initial #0 $display(i);
endmodule

 
DANiel

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
Received on Wed Feb 13 02:04:07 2008

This archive was generated by hypermail 2.1.8 : Wed Feb 13 2008 - 02:04:43 PST