blob: c936f0b39f2fc6f329192fa2961241186586cfc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
; RUN: firrtl -i %s -o %s.flo -x X -p c | tee %s.out | FileCheck %s
; CHECK: Module Top has a reset that is not of type UInt<1>.
; CHECK: Module B has a reset that is not of type UInt<1>.
; CHECK: Module C has a reset that is not of type UInt<1>.
circuit Top :
module Top :
input reset : SInt<1>
module B :
input reset : UInt
module C :
output reset : UInt<1>
|