Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

What does "&&&" mean?

1,871 views
Skip to first unread message

Tim Sterczyk

unread,
Jul 7, 1994, 10:26:04 AM7/7/94
to
Hi,

I've been going through some of the Verilog manuals and came across an
example which used a "&&&" operator. The example was a setup and hold
check between the clock and data signal of a D flip flop. Specifically,
the Verilog statement is:

$setuphold(posedge clk &&& rst, d &&& rst, 3:5:6, 2:3:6);

I would guess that this statement causes the setup and hold check to be
performed only when "rst" (reset) is high. Is this right? Does anyone
know just exactly what the "&&&" operator does and what it is called? I
cannot seem to find a description in any of the manuals. Thanks in
advance.

--
----------------------------------------------------------
| Tim Sterczyk | I am the dumbest man on the planet! |
| ster...@bnr.ca | - courtesy of David Letterman |
----------------------------------------------------------

Craig Botkin

unread,
Jul 7, 1994, 10:44:34 AM7/7/94
to
Tim Sterczyk (ster...@bnr.ca) wrote:
: Hi,

Tim,

Chapter 13 of the Cadence Verilog manuals explain this in the discussion of
timing checks (13-59).

Basically the above statement only does the setup and hold check when the rst
is high. Also note that

$setuphold(posedge clk &&& (rst==0), d &&& (rst==0), 3:5:6, 2:3:6);

will cause the timing check to be performed when the reset is a 0 or an x
(underministic) whereas

$setuphold(posedge clk &&& (rst===0), d &&& (rst===0), 3:5:6, 2:3:6);

causes the timing check to be performed only when the reset is 0.

--

Craig Botkin
Interphase Corporation
bot...@iphase.com

0 new messages