docs.rs failed to build nl-compiler-0.1.26
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
nl-compiler-0.1.23
nl-compiler: Frontend Compiler for Safety-Net
Getting Started
Below is a minimal example to get you started:
module and_test (
a,
b,
y
);
input a;
wire a;
input b;
wire b;
output y;
wire y;
AND _0_ (
.A(a),
.B(b),
.Y(y)
);
endmodule
Save the above file to and.v.
cargo run --example roundtrip -- and.v
Also, take a look at some of the tests: