Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
language:types2 [2024/07/18 16:28] – [Macros and Functions] rajit | language:types2 [2024/10/24 10:28] (current) – [Functions] rajit | ||
---|---|---|---|
Line 160: | Line 160: | ||
adder and five-bit adder. | adder and five-bit adder. | ||
+ | ==== Default parameters ==== | ||
- | ===== Direction flags and user-defined types ===== | + | When defining complex user-defined types with many parameters, it can be useful to have |
+ | default parameter values. ACT has syntax to support default parameter values for trailing | ||
+ | parameters in a template definition. | ||
+ | |||
+ | <code act> | ||
+ | template <pint N; pbool active_high = true> | ||
+ | defproc driver(bool? | ||
+ | { | ||
+ | bool sig; | ||
+ | prs { | ||
+ | inp => sig- | ||
+ | } | ||
+ | [active_high -> prs { sig => outp- } | ||
+ | [] else -> sig = outp; | ||
+ | ] | ||
+ | } | ||
+ | </ | ||
+ | (Note: this is not a real signal driver, but the idea here is the you have a parameterized | ||
+ | driver that can drive a fanout of '' | ||
+ | '' | ||
+ | <code act> | ||
+ | driver< | ||
+ | </ | ||
+ | will have four production rules: | ||
+ | <code act> | ||
+ | x.inp -> sig- | ||
+ | ~x.inp -> sig+ | ||
+ | sig -> x.outp- | ||
+ | ~sig -> x.outp+ | ||
+ | </ | ||
+ | However, this behavior can be changed by using: | ||
+ | <code act> | ||
+ | driver< | ||
+ | </ | ||
+ | In this case, '' | ||
+ | |||
+ | Note that ACT is very strict about type-checking; | ||
+ | ===== Direction flags ===== | ||
Line 205: | Line 243: | ||
is detailed in the section on connections. | is detailed in the section on connections. | ||
- | ===== Macros and Functions ===== | + | ===== Macros and Functions |
User-defined types support additional methods (beyond the special ones for channels and data types). | User-defined types support additional methods (beyond the special ones for channels and data types). | ||
Line 216: | Line 254: | ||
==== Functions ==== | ==== Functions ==== | ||
+ | === Operator overloading === | ||