2013-01-15 05:39:56 +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, 2013 by Wilson Snyder.
|
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2013-01-15 05:39:56 +01:00
|
|
|
|
|
|
|
|
// bug474
|
|
|
|
|
package verb_pkg;
|
2017-09-12 01:18:58 +02:00
|
|
|
typedef enum int {VERB_I,
|
2018-10-27 16:03:28 +02:00
|
|
|
VERB_W} Verb_t;
|
2013-01-15 05:39:56 +01:00
|
|
|
Verb_t verb = VERB_I;
|
|
|
|
|
string message = " ";
|
|
|
|
|
endpackage
|
|
|
|
|
|
|
|
|
|
module t;
|
|
|
|
|
import verb_pkg::*;
|
|
|
|
|
|
|
|
|
|
string message = "*x*";
|
|
|
|
|
initial begin
|
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
|
$finish;
|
|
|
|
|
end
|
|
|
|
|
endmodule
|