1#!/usr/bin/perl
2if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
3# DESCRIPTION: Verilator: Verilog Test driver/expect definition
4#
5# Copyright 2003 by Wilson Snyder. This program is free software; you can
6# redistribute it and/or modify it under the terms of either the GNU
7# Lesser General Public License Version 3 or the Perl Artistic License
8# Version 2.0.
9
10scenarios(simulator => 1);
11
12compile(
13    );
14
15execute(
16    check_finished => 1,
17    );
18
19ok(1);
201;
21