blob: 9341468c721232922fff30e4cf03554d82bcdc4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
; RUN: firrtl -i %s -o %s.v -X verilog -p c 2>&1 | tee %s.out | FileCheck %s
; CHECK: Done!
circuit Top :
module Top :
wire x_1 : UInt<1>
x_1 <= UInt(1)
wire x : UInt<1>
x <= addw(addw(UInt(1),UInt(1)),UInt(1))
|