Structure of Generated Script Files
A generated EDA script consists of three sections, generated and executed in the following order:
An initialization (
Init
) phase. TheInit
phase performs the required setup actions, such as creating a design library or a project file. Some arguments to theInit
phase are implicit, for example, the top-level entity or module name.A command-per-file phase (
Cmd
). This phase of the script is called iteratively, once per generated HDL file or once per signal. On each call, a different file or signal name is passed in.A termination phase (
Term
). This is the final execution phase of the script. One application of this phase is to execute a simulation of HDL code that was compiled in theCmd
phase. TheTerm
phase does not take arguments.
The HDL Coder™ software generates scripts by passing format
strings to the fprintf
function. Using the GUI
options (or makehdl
and makehdltb
properties)
summarized in the following sections, you can pass in customized format
names to the script generator. Some of these format names take arguments,
such as the top-level entity or module name, or the names of the VHDL® or Verilog® files
in the design.
You can use valid fprintf
formatting characters.
For example, '\n'
inserts a newline into the script
file.