aboutsummaryrefslogtreecommitdiff
path: root/test/passes/jacktest/UIntOps.fir
diff options
context:
space:
mode:
authorjackbackrack2015-04-27 17:37:42 -0700
committerjackbackrack2015-04-27 17:37:42 -0700
commit2a4f374b19e10a1571fbd2a23b30e92c9179defd (patch)
treed106c4bd0204124cdf46479e8f6ebc1e37ede3d1 /test/passes/jacktest/UIntOps.fir
parentcbc928e5e80898163871b8be1b34106e5275af58 (diff)
parentd6d630e6dbe3e5dd3c335cc8bd65a81d9dcb0f5f (diff)
merge
Diffstat (limited to 'test/passes/jacktest/UIntOps.fir')
-rw-r--r--test/passes/jacktest/UIntOps.fir30
1 files changed, 15 insertions, 15 deletions
diff --git a/test/passes/jacktest/UIntOps.fir b/test/passes/jacktest/UIntOps.fir
index bb3e6293..e402f22e 100644
--- a/test/passes/jacktest/UIntOps.fir
+++ b/test/passes/jacktest/UIntOps.fir
@@ -3,21 +3,21 @@
circuit UIntOps :
module UIntOps :
- input b : UInt(16)
- input a : UInt(16)
- output addout : UInt(16)
- output subout : UInt(16)
- output timesout : UInt(16)
- output divout : UInt(16)
- output modout : UInt(16)
- output lshiftout : UInt(16)
- output rshiftout : UInt(16)
- output lessout : UInt(1)
- output greatout : UInt(1)
- output eqout : UInt(1)
- output noteqout : UInt(1)
- output lesseqout : UInt(1)
- output greateqout : UInt(1)
+ input b : UInt<16>
+ input a : UInt<16>
+ output addout : UInt<16>
+ output subout : UInt<16>
+ output timesout : UInt<16>
+ output divout : UInt<16>
+ output modout : UInt<16>
+ output lshiftout : UInt<16>
+ output rshiftout : UInt<16>
+ output lessout : UInt<1>
+ output greatout : UInt<1>
+ output eqout : UInt<1>
+ output noteqout : UInt<1>
+ output lesseqout : UInt<1>
+ output greateqout : UInt<1>
node T_31 = add-wrap(a, b)
addout := T_31