Modif man
This commit is contained in:
parent
07d964ab5d
commit
42f511691c
|
@ -1,4 +1,4 @@
|
|||
.\" $Id: boom.1,v 1.1 2000/08/25 12:01:41 syf Exp $
|
||||
.\" $Id: boom.1,v 1.2 2000/08/25 12:43:04 syf Exp $
|
||||
.\" @(#)Labo.l 2.2 95/09/24 UPMC; Author: Jacomme L.
|
||||
.pl -.4
|
||||
.TH BOOM 1 "August 25, 2000" "ASIM/LIP6" "CAO\-VLSI Reference Manual"
|
||||
|
@ -50,13 +50,42 @@ This mode is well-suited for random circuits such as FSMs.
|
|||
.TP 10
|
||||
\f4\-P\fP
|
||||
Uses a parameter file \fBinput_name\fP.boom describing
|
||||
optimization directives and constraints (see boom(5) for details) .
|
||||
optimization directives and constraints.
|
||||
(see below for the exact syntax)
|
||||
|
||||
.nf
|
||||
# Example of .boom file
|
||||
|
||||
#
|
||||
# The list of auxiliary signals that have to be kept
|
||||
# during optimization.
|
||||
# Generally carry signals, ram address signals etc ...
|
||||
#
|
||||
BEGIN_KEEP
|
||||
|
||||
carry[3:0]
|
||||
ram_address[3:0]
|
||||
|
||||
END
|
||||
|
||||
#
|
||||
# The list of auxiliary signals which assigned
|
||||
# expression won't be modified.
|
||||
# Generally it's ram output signals.
|
||||
#
|
||||
BEGIN_DONT_TOUCH
|
||||
ram_out[7:0]
|
||||
END
|
||||
.fi
|
||||
|
||||
.TP 10
|
||||
\f4\-L num\fP
|
||||
Specifies the optimization level [0\-3] (default is 0, low level).
|
||||
Specifies the optimization level [0\-3]
|
||||
(default is 0, low level).
|
||||
.TP 10
|
||||
\f4\-D num\fP
|
||||
Specifies the delay optimization percent (default is 50% delay, 50% surface).
|
||||
Specifies the delay optimization percent
|
||||
(default is 50% delay, 50% surface).
|
||||
.TP 10
|
||||
\f4\-i num\fP
|
||||
Specifies the number of iterations for the choosen optimization algorithm
|
||||
|
|
|
@ -115,6 +115,7 @@ BUF_VSS vss
|
|||
BUF_OUTPUT q
|
||||
|
||||
END_BUF
|
||||
.fi
|
||||
|
||||
|
||||
.TP 10
|
||||
|
@ -124,6 +125,7 @@ all instances (registers) of the scan path.
|
|||
It contains also the name of the 3 connectors scan_in, scan_out and scan_test.
|
||||
(see below for the exact syntax)
|
||||
|
||||
.nf
|
||||
# Example of .path file
|
||||
|
||||
BEGIN_PATH_REG
|
||||
|
|
Loading…
Reference in New Issue