Hi,
Does it mean the items declared inside anonymous program can be accessible from another program only. If not, then what is the usage of those items?
Is the following case valid?
package p;
program;
task t1;
int x;
endtask
endprogram
program;
task t2;
int x;
x = t1.x; // Is t1 accessible?
endtask
endprogram
endpackage
program pro;
import p::*;
task t3;
int x;
x = t1.x;// Is t1 accessible?
endtask
endprogram
module top;
endmodule
-- Regards Surya.Received on Mon May 8 06:30:29 2006
This archive was generated by hypermail 2.1.8 : Mon May 08 2006 - 06:31:16 PDT