mirror of
https://github.com/verilator/verilator.git
synced 2025-01-06 06:37:45 +00:00
24 lines
444 B
Systemverilog
24 lines
444 B
Systemverilog
|
// DESCRIPTION: Verilator: Verilog Test module
|
||
|
//
|
||
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
||
|
// any use, without warranty, 2024 by Wilson Snyder.
|
||
|
// SPDX-License-Identifier: CC0-1.0
|
||
|
|
||
|
module t(/*AUTOARG*/);
|
||
|
|
||
|
typedef struct {
|
||
|
int a;
|
||
|
} s_t;
|
||
|
|
||
|
typedef enum s_t {
|
||
|
EN_ZERO } bad_t;
|
||
|
|
||
|
typedef int int_t;
|
||
|
|
||
|
typedef enum int_t { EN_ONE = 1 } ok1_t;
|
||
|
|
||
|
s_t s;
|
||
|
int_t i;
|
||
|
|
||
|
endmodule
|