Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
config:start [2023/01/30 11:46] – [Generic] rajit | config:start [2025/03/25 10:32] (current) – [Generic configuration settings] rajit | ||
---|---|---|---|
Line 65: | Line 65: | ||
* '' | * '' | ||
- | ==== Generic ==== | + | ==== Generic |
+ | |||
+ | These settings have to do with various options that can impact ACT circuit construction and output generation. | ||
=== Circuit construction complexity === | === Circuit construction complexity === | ||
Line 86: | Line 88: | ||
</ | </ | ||
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. | 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 === | === Output generation and name mangling === | ||
Line 94: | 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 100: | 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 131: | 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 162: | Line 198: | ||
* '' | * '' | ||
* '' | * '' | ||
+ | * '' | ||