home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.lang.verilog
- Path: sparky!uunet!gatech!destroyer!sol.ctr.columbia.edu!src.honeywell.com!hwcae!ericj
- From: ericj@hwcae.Honeywell.COM (Eric Jacobsen)
- Subject: Re: Displaying waveforms?
- In-Reply-To: kenr@orleans.storage.tandem.com's message of Wed, 9 Sep 1992 18: 54:30 GMT
- Message-ID: <ERICJ.92Sep9140157@calcutta.cfsat.Honeywell.COM>
- Sender: news@src.honeywell.com (News interface)
- Nntp-Posting-Host: calcutta.hwcae.az.honeywell.com
- Organization: Honeywell, Air Transport Division; Phoenix, AZ
- References: <1992Sep9.142630.9560@engage.pko.dec.com> <1992Sep9.185430.19969@tandem.com>
- Date: Wed, 9 Sep 1992 20:01:57 GMT
- Lines: 34
-
- In article <1992Sep9.142630.9560@engage.pko.dec.com>, hampton@ecadsr.enet.dec.com (Jonathan D. Hampton) writes:
- >
- > I'm using Cadence's VERILOG-XL tool and I was wondering if anyone
- > can tell me how to display simulation results as waveforms on the screen
- > or in a file. The tutorial mentions a graphical output facility, but
- > the manuals do not.
- >
- Assuming your system has all the appropriate hooks, all you need in your
- code is:
-
- $gr_waves( "label", signal,
- "label2", signal2,
- "bus", bus_name,
- "more", stuff );
-
- Up to 21 labels (I think) can be displayed in one group. You can define
- more than one group and switch between them.
-
- Put the $gr_waves(...); in your .vt file.
-
- Hope this helps...
-
- --
- *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
- * Eric Jacobsen Honeywell Inc. *
- | 1-602-436-3941 Commercial Flight Systems, Air Transport |
- * HVN 436-3941 US Mail: P.O. Box 21111, MS 2Q34C1 *
- | FAX 1-602-436-1310 Phoenix AZ 85036-1111 |
- * INet: ericj@hwcae.honeywell.com *
- | UUCP: uunet!hwcae.honeywell.com!ericj@uunet.uu.net |
- * The opinions expressed are my own and therefore better *
- | thought out than my employer's. |
- *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
-
-