diff options
| author | azidar | 2015-07-13 16:22:43 -0700 |
|---|---|---|
| committer | azidar | 2015-07-14 11:29:55 -0700 |
| commit | 271e1bf5ed56847c1ce7d50bdb7f1db9ccc5ea55 (patch) | |
| tree | 8b1cdfcfc97a9710bd1bc5be973578f712cfa253 /test/passes/make-explicit-reset | |
| parent | 0bfb3618b654a4082cc2780887b3ca32e374f455 (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.fir | 29 |
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 |
