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
// test.neoh - Verification File

block Adder(in a, in b, out c) logic {
    var res;
    res = 1;
    ret c <= a + b;
}

testbench TestAdder target(Adder) {
    var x;
    x = 10;
    /10 out("Simulation Started");
}