Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
intro_example:namespace [2020/06/19 07:25]
rajit [Creating a library of building blocks]
intro_example:namespace [2020/06/19 07:28]
rajit
Line 125: Line 125:
  
 The ''import'' statement looks for ''gates.act'' (details are in [[language:namespaces|Namespaces]]), and imports it if it is found. It also checks that the namespace ''gates'' exists after the import. The ''import'' statement looks for ''gates.act'' (details are in [[language:namespaces|Namespaces]]), and imports it if it is found. It also checks that the namespace ''gates'' exists after the import.
 +
 +
 +Finally, if you are going to be using the ''gates'' namespace a lot, it can be added to the search path used to find type definitions as follows.
 +
 +<code>
 +import gates;
 +open gates;
 +
 +defproc adder (bool? a,b,ci; bool! s,co)
 +{
 +  bool y1,y2,y3;
 +  xor2 X1(a, b, y1);
 +  and2 A1(a,b,y2);
 +  xor2 X2 (y1,ci,s);
 +  and2 A2(y1,ci,y3);
 +  or2 O1(y2,y3,co);
 +}
 +
 +adder FA;
 +</code>
 +
 +
 ===== Simulating with prsim script ===== ===== Simulating with prsim script =====
 Run simulation in prsim with script as: Run simulation in prsim with script as: