aboutsummaryrefslogtreecommitdiff
path: root/test/passes/make-explicit-reset
diff options
context:
space:
mode:
authorazidar2015-07-13 16:22:43 -0700
committerazidar2015-07-13 16:22:43 -0700
commit9b6d8514a3be860562d8d524fa425c87d1537e8a (patch)
treeca46b9703046e23068860b5c5d8d6af01296c000 /test/passes/make-explicit-reset
parent1ed6d4a47c92072b12db4b784f239071e4928049 (diff)
Added tests for clocks. Added remove scope and special chars passes. Added tests. Made more tests pass
Diffstat (limited to 'test/passes/make-explicit-reset')
-rw-r--r--test/passes/make-explicit-reset/mix-reset.fir29
1 files changed, 0 insertions, 29 deletions
diff --git a/test/passes/make-explicit-reset/mix-reset.fir b/test/passes/make-explicit-reset/mix-reset.fir
deleted file mode 100644
index 97d32397..00000000
--- a/test/passes/make-explicit-reset/mix-reset.fir
+++ /dev/null
@@ -1,29 +0,0 @@
-; RUN: firrtl -i %s -o %s.flo -X flo -p cd | tee %s.out | FileCheck %s
-
-; CHECK: Make Explicit Reset
-circuit top :
- module A :
- ;CHECK: input reset : UInt<1>
- input x : UInt<16>
- output y : UInt<16>
- inst b of B
- ;CHECK: b.reset := reset
- module B :
- input reset : UInt<1>
- ;CHECK: input reset : UInt<1>
- input x : UInt<16>
- output y : UInt<16>
- inst c of C
- ;CHECK: c.reset := reset
- module C :
- ;CHECK: input reset : UInt<1>
- input a : UInt<16>
- input b : UInt<16>
- module top :
- ;CHECK: input reset : UInt<1>
- input a : UInt<16>
- input b : UInt<16>
- output z : UInt<1>
- inst x of A
- ;CHECK: x.reset := reset
-;CHECK: Finished Make Explicit Reset