2006-08-26 11:35:28 +00:00
|
|
|
|
//*************************************************************************
|
|
|
|
|
//
|
2008-04-25 12:14:27 +00:00
|
|
|
|
// Code available from: http://www.veripool.org/verilator
|
2006-08-26 11:35:28 +00:00
|
|
|
|
//
|
|
|
|
|
//*************************************************************************
|
|
|
|
|
//
|
2019-01-04 00:17:22 +00:00
|
|
|
|
// Copyright 2003-2019 by Wilson Snyder. This program is free software; you can
|
2006-08-26 11:35:28 +00:00
|
|
|
|
// redistribute it and/or modify it under the terms of either the GNU
|
2009-05-04 21:07:57 +00:00
|
|
|
|
// Lesser General Public License Version 3 or the Perl Artistic License.
|
|
|
|
|
// Version 2.0.
|
2006-08-26 11:35:28 +00:00
|
|
|
|
//
|
|
|
|
|
// This is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
// GNU General Public License for more details.
|
2008-06-10 01:25:10 +00:00
|
|
|
|
//
|
2006-08-26 11:35:28 +00:00
|
|
|
|
//=========================================================================
|
|
|
|
|
//
|
|
|
|
|
// DESCRIPTION: Verilator: Include in verilog files to hide verilator defines
|
|
|
|
|
|
|
|
|
|
`ifdef _VERILATED_V_ `else
|
|
|
|
|
`define _VERILATED_V_ 1
|
|
|
|
|
|
|
|
|
|
// Hide verilator pragmas from other tools
|
2012-08-27 01:13:47 +00:00
|
|
|
|
`ifdef VERILATOR `else
|
2006-08-26 11:35:28 +00:00
|
|
|
|
`define coverage_block_off
|
|
|
|
|
`endif
|
2008-06-10 01:25:10 +00:00
|
|
|
|
|
2011-07-01 17:41:21 +00:00
|
|
|
|
// Hide file descriptor difference - deprecated - for older versions
|
|
|
|
|
`define verilator_file_descriptor integer
|
2006-08-26 11:35:28 +00:00
|
|
|
|
|
2018-11-29 00:59:10 +00:00
|
|
|
|
`endif // guard
|