remove de mans en trop

This commit is contained in:
Olivier Sirol 1999-09-24 16:17:54 +00:00
parent e0052f6d56
commit d6d3e7c695
2 changed files with 0 additions and 103 deletions

View File

@ -1,49 +0,0 @@
.\" $Id: affect.3,v 1.1 1999/05/31 17:30:17 alliance Exp $
.\" @(#)AFFECT.2 1.9 Oct 16 1992 UPMC ; VUONG H.N.
.TH AFFECT 3 "October 1, 1997" "ASIM/LIP6" "GENPAT functions"
.SH NAME
.PP
\fBaffect\fP, GENPAT Package
.so man1/alc_origin.1
.SH SYNOPSYS
.PP
.nf
affect("pattern_nb","ident","value", ... ,0);
.fi
.SH PARAMETERS
.PP
.TP 10
\fIpattern_nb\fP
pattern number which may be either : decimal (absolute number of pattern)
or + decimal ( relative number of pattern) or converted with CONV(integer
or variable or expression returning an integer).
.TP 10
\fIident\fP
Either the name of a bused signal or a scalar.
.TP 10
\fIvalue\fP
Tha value associated with the signal which may be either a based number (ex.
0B011 or 0H3F) or a constant or a converted with conv or convcmp(integer or variable
or expression returning an integer).
.SH DESCRIPTION
.PP
Affect values to elements of type PORT, SIGNAL and ARRAY.
.SH EXAMPLES
.PP
.nf
affect("0","b","0B1",0);
At pattern 0 the PORT b(3 downto 0) receive "0001"
.fi
.SH SEE ALSO
.PP
genpat(1); pat(5)
.so man1/alc_bug_report.1

View File

@ -1,54 +0,0 @@
.\" $Id: init.3,v 1.1 1999/05/31 17:30:22 alliance Exp $
.\" @(#)INIT.2 1.9 UPMC ; VUONG H.N.
.TH INIT 3 "October 1, 1997" "ASIM/LIP6" "GENPAT functions"
.SH NAME
.PP
\fBinit\fP, GENPAT Package
.so man1/alc_origin.1
.SH SYNOPSYS
.PP
.nf
init("pattern_nb","ident","value", ... ,0);
.fi
.SH PARAMETERS
.PP
.TP 10
\fIpattern_nb\fP
pattern number which may be either : decimal (absolute number of pattern)
or + decimal ( relative number of pattern) or converted with CONV(integer
or variable or expression returning an integer).
.TP 10
\fIident\fP
Either the name of a bused register or a simple register. Path-name must be
specified by the syntax : instance1.instance11.name
.TP 10
\fIvalue\fP
Tha value associated with the signal which may be either a based number (ex.
0B011 or 0H3F) or a constant or a converted with CONV(integer or variable
or expression returning an integer).
.SH DESCRIPTION
.PP
Initialize registers at indicated values.
.SH EXAMPLE
.PP
.nf
init("0","regt","0B1",0);
At pattern 0 the signal regt or the components of the vector named
regt receive "1"
init("+0","y 3 downto 0","0xF",0);
At pattern +0, (current pattern), the vector y composed of
y 3, y 2, y 1, y 0 is affected with the value 15 in decimal or F in hexadecimal.
Nota : The vector y has not yet been described, so it is entirely described here.
.fi
.SH SEE ALSO
genpat(1), pat(5)
.so man1/alc_bug_report.1