neoh 0.1.4

A declarative HDL transpiler for rapid testbench development.
1
2
3
4
5
6
7
8
9
10
11
12
13
`timescale 1ns / 1ps

module my_logic();
  assign  x = a + b;
  assign  z = a - b;
  reg y;
endmodule
module tb_my_tb();
  my_logic dut();
  initial begin
    x 10 10;
  end
endmodule