Open ragerdl opened 9 years ago
My work-around, in case anyone is interested. Note that my original OR2 called OR
with a delay, which is why I've added it to this example. I have no idea whether delays are supported (what would that even mean in a simulation system that's specified at the granularity of a half clock cycle), but I'd be surprised if they are.
module OR2 ( a, b, out );
input a;
input b;
output out;
assign #20 out = a | b;
endmodule
This may be too academic in nature to warrant prioritizing, but the included code for
gate.lisp
, below, generates an error about an unnamed gate instance:=== begin
gate.v
====== begin
gate.lisp
===This is with version 16345 of CCL and a version of the ACL2 repository from the night of 5/26/2015.
As always, maybe there's a goofy typo.