home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / lang / verilog / 339 < prev    next >
Encoding:
Text File  |  1992-09-09  |  2.0 KB  |  48 lines

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