summaryrefslogtreecommitdiff
path: root/cocotb_try/my_design.v
blob: 458ac8ec1bc9190f8a4c1b1c3d3ad0337fdfe2a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// This file is public domain, it can be freely copied without restrictions.
// SPDX-License-Identifier: CC0-1.0

module my_design(input logic clk);

  timeunit 1ns;
  timeprecision 1ns;

  logic my_signal_1;
  logic my_signal_2;

  assign my_signal_1 = 1'bx;
  assign my_signal_2 = 0;

endmodule