User guide
3-40
Compiling and Elaborating Your Design
Configuration File Statement Examples
The following are examples of statements in a configuration file.
module statement example
module {mod1, mod2, mod3} {noOpt, PortOpt};
This module statement example disables Radiant optimizations for
all instances of modules mod1, mod2, and mod3, with the exception
of port optimizations.
multiple module statement example
module {mod1, mod2} {noOpt};
module {mod1} {Opt};
In this example of two module statements, the first module statement
disables Radiant optimizations for all instances of modules mod1 and
mod2 and then the second module statement enables Radiant
optimizations for all instances of module mod1. VCS processes
statements in the order in which they appear in the configuration file
so the enabling of optimizations for instances of module mod1 in the
second statement overrides the first statement.
instance statement example
instance {mod1} {noOpt};
In this example, mod1 is a module identifier so the statement disables
Radiant optimizations for all instances of mod1. This statement is the
equivalent of:
module {mod1} {noOpt};
module and instance statement example
module {mod1} {noOpt};