neoh 0.3.3

A declarative HDL transpiler for rapid testbench development.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module Adder(
  input logic a,
  input logic b,
  output logic c
);

  logic res;
  assign res = 1;
  assign c = a + b;
endmodule

module TestAdder_tb;
  Adder uut();
  initial begin
    #10 $display("Simulation Started");
  end
endmodule