File: top.v

package info (click to toggle)
verilator 5.046-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 69,920 kB
  • sloc: cpp: 157,707; python: 23,195; ansic: 10,999; yacc: 6,184; lex: 2,013; makefile: 1,434; sh: 620; perl: 302
file content (14 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// DESCRIPTION: Verilator: Verilog example module
//
// This file ONLY is placed under the Creative Commons Public Domain.
// SPDX-FileCopyrightText: 2017 Wilson Snyder
// SPDX-License-Identifier: CC0-1.0

// See also https://verilator.org/guide/latest/examples.html"

module top;
  initial begin
    $display("Hello World!");
    $finish;
  end
endmodule