2019-05-08 03:57:38 +02:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
2026-01-27 02:24:34 +01:00
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain.
|
|
|
|
|
// SPDX-FileCopyrightText: 2019 Wilson Snyder
|
2020-03-21 16:24:24 +01:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2019-05-08 03:57:38 +02:00
|
|
|
|
2025-09-13 15:28:43 +02:00
|
|
|
module t;
|
2019-05-08 03:57:38 +02:00
|
|
|
|
2026-03-03 13:21:24 +01:00
|
|
|
initial begin
|
|
|
|
|
if (32'hxxxxxxxx !== 'hx) $stop;
|
|
|
|
|
if (32'hzzzzzzzz !== 'hz) $stop;
|
|
|
|
|
if (32'h???????? !== 'h?) $stop;
|
|
|
|
|
if (68'hx_xxxxxxxx_xxxxxxxx !== 'dX) $stop;
|
|
|
|
|
if (68'hz_zzzzzzzz_zzzzzzzz !== 'dZ) $stop;
|
|
|
|
|
if (68'h?_????????_???????? !== 'd?) $stop;
|
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
|
$finish;
|
|
|
|
|
end
|
2019-05-08 03:57:38 +02:00
|
|
|
|
|
|
|
|
endmodule
|