2025-05-04 20:57:10 +02:00
|
|
|
// -*- Verilog -*-
|
2025-05-03 11:30:40 +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: 2025 Wilson Snyder
|
2025-05-03 11:30:40 +02:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
|
|
// lib.map file:
|
|
|
|
|
|
2025-12-16 17:21:46 +01:00
|
|
|
library rtllib m?.v, m*.sv; // wildcard match (?, *)
|
|
|
|
|
library rtllib2 sub/; // include directory match
|
|
|
|
|
library rtllib5 m5.v; // explicit match
|
2025-05-03 11:30:40 +02:00
|
|
|
|
2025-05-04 20:57:10 +02:00
|
|
|
// Note this does not start a comment
|
|
|
|
|
library gatelib ./*.vg;
|
|
|
|
|
// */
|
|
|
|
|
|
2025-05-03 11:30:40 +02:00
|
|
|
config cfg;
|
|
|
|
|
design t;
|
|
|
|
|
endconfig
|