2020-01-12 10:03:17 +01:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
2020-03-21 16:24:24 +01:00
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
|
|
|
|
// any use, without warranty, 2010 by Wilson Snyder.
|
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2020-01-12 10:03:17 +01:00
|
|
|
|
|
|
|
|
`verilator_config
|
|
|
|
|
|
|
|
|
|
public -module "t" @(posedge clk)
|
2022-05-13 04:27:38 +02:00
|
|
|
// only signals/functions/tasks
|
2020-01-12 10:03:17 +01:00
|
|
|
isolate_assignments -module "t"
|
2022-05-13 04:27:38 +02:00
|
|
|
// -match not supported
|
|
|
|
|
tracing_off --file "*" -match "nothing"
|
|
|
|
|
// -scope not supported
|
|
|
|
|
lint_off --rule UNOPTFLAT -scope "top*"
|
|
|
|
|
lint_off --rule UNOPTFLAT -scope "top*" -levels 0
|
|
|
|
|
lint_on --rule UNOPTFLAT -scope "top*"
|
|
|
|
|
lint_on --rule UNOPTFLAT -scope "top*" -levels 0
|