moore 0.12.0

A compiler for hardware description languages.
Documentation
1
2
3
4
5
6
// RUN: moore %s -e foo
module foo;
  logic [3:0] x;
  bit z;
  initial z = x inside {[3'b000:3'b100], 3'b111};
endmodule