Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Does "list of unittype" OK in e language?

Status
Not open for further replies.

cnspy

Full Member level 3
Full Member level 3
Joined
Sep 10, 2002
Messages
150
Helped
5
Reputation
10
Reaction score
1
Trophy points
1,298
Activity points
1,041
In e language, can I use unit type in "list of type" command?

Such as:

fileA :
unit test_u { };

fileB :

tests[5] : list of test_u;

Is it OK?
 

Do you want to generate a list of size 5 ,type test_u?
If so ,I'll do like this:
tests:list of test_u is instance;
keep tests.size()==5;

And they must be put in a unit.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top