Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
config:start [2020/08/03 17:47] – [Configuration file location] rajit | config:start [2025/03/25 10:32] (current) – [Generic configuration settings] rajit | ||
---|---|---|---|
Line 12: | Line 12: | ||
===== Configuration file location ===== | ===== Configuration file location ===== | ||
- | Configuration files are located in the '' | + | Configuration files are located in the '' |
Line 42: | Line 42: | ||
</ | </ | ||
Drops the last prefix | Drops the last prefix | ||
+ | |||
+ | In addition, strings in a configuration file can use environment variables. The syntax for this is shown below: | ||
+ | < | ||
+ | string my_test_path " | ||
+ | </ | ||
+ | The environment variable '' | ||
Line 50: | Line 56: | ||
===== Technology-independent configuration ===== | ===== Technology-independent configuration ===== | ||
- | ==== Generic ==== | + | Technology-independent configuration is stored in '' |
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | |||
+ | Other common names are: | ||
+ | * '' | ||
+ | * '' | ||
+ | |||
+ | ==== Generic | ||
+ | |||
+ | These settings have to do with various options that can impact ACT circuit construction and output generation. | ||
+ | |||
+ | === Circuit construction complexity | ||
< | < | ||
Line 62: | Line 81: | ||
These two parameters control the expansion/ | These two parameters control the expansion/ | ||
include while loops, as well as recursive circuit constructions. To ensure that the ACT expansion phase will always terminate (albeit with an error), these two parameters control the maximum depth of recursive expansions as well as the maximum number of iterations of a while loop. | include while loops, as well as recursive circuit constructions. To ensure that the ACT expansion phase will always terminate (albeit with an error), these two parameters control the maximum depth of recursive expansions as well as the maximum number of iterations of a while loop. | ||
+ | |||
+ | < | ||
+ | begin act | ||
+ | int subconnection_limit 16384 | ||
+ | end | ||
+ | </ | ||
+ | This specifies a limit on array sizes that also have internal sub-connections (i.e. arrays that are not just simple memories, for example). The limit should be increased as needed, but can have a performance impact if you have a very large array with internal sub-connections. | ||
+ | |||
+ | === Warnings === | ||
+ | |||
+ | The following warnings can be turned on/off using an ACT configuration setting. They can also be adjusted via the standard act [[stdoptions: | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | * '' | ||
+ | |||
+ | |||
+ | === Output generation and name mangling === | ||
< | < | ||
Line 68: | Line 106: | ||
end | end | ||
</ | </ | ||
- | Sometimes it is useful to export files from the ACT format to other formats to interact with external tools. Examples of such formats include Verilog and SPICE. Since these are different languages, they use different syntax for identifiers. (Different commercial SPICE simulators use different identifier syntax too.) ACT identifiers and names include characters including '' | + | Sometimes it is useful to export files from the ACT format to other formats to interact with external tools. Examples of such formats include Verilog and SPICE. Since these are different languages, they use different syntax for identifiers. (Different commercial SPICE simulators use different identifier syntax too.) ACT identifiers and names include characters including '' |
< | < | ||
begin act | begin act | ||
Line 74: | Line 113: | ||
end | end | ||
</ | </ | ||
+ | If the mangle character needs to be changed, then a different character can be set by modifying the '' | ||
+ | |||
+ | < | ||
+ | begin act | ||
+ | int output_window_width 72 | ||
+ | end | ||
+ | </ | ||
+ | For tools that use pretty-printing, | ||
Line 105: | Line 152: | ||
would use '' | would use '' | ||
+ | ACT also has support for generic two-terminal devices. The standard configuration option uses this to support capacitors. | ||
+ | < | ||
+ | begin act | ||
+ | string_table prs_device " | ||
+ | end | ||
+ | </ | ||
+ | This permits you to write: | ||
+ | The first flavor in the list ('' | ||
+ | < | ||
+ | prs { | ||
+ | cap (in,GND) | ||
+ | | ||
+ | } | ||
+ | </ | ||
+ | These are capacitors, the first one being a unit capacitor while the second is 10 units (5 x 2) in size. | ||
==== Specification directives ==== | ==== Specification directives ==== | ||
Line 131: | Line 193: | ||
===== Technology-specific configuration ===== | ===== Technology-specific configuration ===== | ||
- | * [[config: | + | The bulk of the configuration options are technology-specific. These are used to convert a technology-independent ACT description into a technology-specific output (e.g. a SPICE netlist). The standard set of configuration files we expect are: |
- | * [[config: | + | |
+ | * '' | ||
+ | | ||
+ | * '' | ||
+ | * '' | ||