make examples parse with new parser
This commit is contained in:
parent
1798baa9d3
commit
b428a6d340
|
@ -1,8 +1,8 @@
|
|||
module clockdiv_2 (
|
||||
input wire clk,
|
||||
input wire rst,
|
||||
output wire out_clk
|
||||
) {
|
||||
clk: Logic,
|
||||
rst: Logic
|
||||
) -> Logic
|
||||
{
|
||||
proc (clk) {
|
||||
match (~rst) {
|
||||
0 => out_clk = 0,
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module comparator (
|
||||
input wire [8] a,
|
||||
input wire [8] b,
|
||||
output wire eq
|
||||
) {
|
||||
a: Logic<8>,
|
||||
b: Logic<8>
|
||||
) -> Logic
|
||||
{
|
||||
assign eq = ~reduce_or(a ^ b);
|
||||
}
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
module halfadd (
|
||||
input wire a,
|
||||
input wire b,
|
||||
output wire sum,
|
||||
output wire carry
|
||||
)
|
||||
a: Logic,
|
||||
b: Logic
|
||||
) -> (Logic, Logic)
|
||||
{
|
||||
assign sum = a ^ b;
|
||||
assign carry = a & b;
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
module identity (
|
||||
input wire a,
|
||||
output wire x
|
||||
)
|
||||
a: Logic
|
||||
) -> Logic
|
||||
{
|
||||
assign x = a;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue